hi MudassarSZ365,
BusinessApproverEmail is multi-person Combobox that is being patched to a SharePoint PeoplePicker field
here is the full Patch statement that had been working until I populated the FinanceApproverEmail Combobox using the FIRST function
here is the full PATCH code
-------------------------------------------------------------------
ClearCollect(
colSharePointNewItem,
Patch(
spFinance_List,
Defaults(spFinance_List),
{
Title: FlowParm7_UserFilename,
Business_Requestor:
{
Claims: User().Email,
Department: "",
DisplayName:User().FullName,
Email:User().Email,
JobTitle: "",
Picture: ""
},
Business_Approver: ForAll(ComboBox_BusinessApproverEmail.SelectedItems,
{
Claims: ThisRecord.Mail,
Department: "",
DisplayName:User().FullName,
Email:User().Email,
JobTitle: "",
Picture: ""
}
),
Finance_Approver:ForAll(ComboBox_FinanceApproverEmail.SelectedItems,
{
Claims: ThisRecord.mail,
Department: "",
DisplayName:User().FullName,
Email:User().Email,
JobTitle: "",
Picture: ""
}
),
CC_Users:ForAll(ComboBox_CCeMail.SelectedItems,
{
Claims: ThisRecord.Mail,
Department: "",
DisplayName:User().FullName,
Email:User().Email,
JobTitle: "",
Picture: ""
}
),
FileNameTempale_Uploaded: FlowParm6_UserFilenameExt,
NumberAttachments_Uploaded: varNumberOfAttachments,
Comments: TextInput_Comments.Text,
'Created Date': Today()
}
)
);
-------------------------------------------------------------------