
Announcements
Hey everyone,
I have created an app that allows you to put an issue, person responsible( I have created office 365 groups example being splice).
When i choose it and submit all information transfers except the group. I have the group turned on in the SharePoint site and i also have tried manually entering it and it works.
Any advice would be appreciated
Chris
Hi @Anonymous ,
I am not sure, Like how to save the data into SPlist.
but if you using the Patch function then you can pass value like the below formate.
Patch(
PurchaseOrderRequisitions,
Defaults(PurchaseOrderRequisitions),
{
Title: "NewPersonFieldSubmission",
Requestor: {'@odata.type':
"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims: "i:0#.f|membership|" & dd_Requestor.Selected.Email,
Department: dd_Requestor.Selected.Department,
DisplayName: dd_Requestor.Selected.DisplayName,
Email: dd_Requestor.Selected.Email,
JobTitle: "",
Picture: ""
}
);​Thanks,
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."-Vijay