I have consistently been using Dataverse's Note table to allow users to upload attachments, but recently I've found that users are unable to upload attachments normally. However, I can still upload with my own account. Do you know if the official settings for this table's default permissions have been changed? How should I adjust the security role to resolve this issue?
Patch(
CSHHR_LeaveRecords,
Defaults(CSHHR_LeaveRecords),
{
Title: First(LeaveEdit).Title,
Detail: If(
IsBlank(First(LeaveEdit).Detail),
" ",
First(LeaveEdit).Detail
),
'Start Date': First(LeaveEdit).'Start Date',
'End Date': First(LeaveEdit).'End Date',
'Leave Type': First(LeaveEdit).'Leave Type',
Approver: First(LeaveEdit).Approver,
Status: "Pending",
Requester: First(LeaveEdit).Requester,
LeaveID: VarLeaveID,
'Requested Days': First(LeaveEdit).'Requested Days'
},
LeaveAttachmentForm.Updates
)
