Hi,
I am new to the use of SP List as data connector to my Papp. I do a Patch formula pasted below. There is an issue with passing an attribute which is text into SP list to variable that is type Person/Group i.e. RequestedBy. From some research, I have learned about the section after RequestedBy in the formula below but have such little knowledge do not know if going in the right direction. Any suggestion greatly appreciated. RequestedByAutoInput is the Papps variable which basically captures the User().Fullname value. Lastly, all other information is passed okay to the SP List since all these variable are identified as Single Line text in SP.
Patch(
CertRegistrationProcess, Defaults(CertRegistrationProcess),
{CertReqID: CertReqID.Text,
RequestedBy: {'@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpanderUser",
Claims:" “,
Department:" ",
DisplayName: RequestedByAutoInput.Text
Email: “ ”,
JobTitle:" ",
Picture:" "},
RequestorEmail: RequestorEmailAutoInput.Text,
RegistrationDate: RegistrationDateAutoInput.Text,
CertTypeID: CertTypeID.Text,
CertName: CertName.Text,
CertCompany: CertCompany.Text,
CertCompanyID: CertCompanyID.Text,
ExamRequestDate: ExamRequestDate.SelectedDate,
ExamRequestTime: ExamRequestTime.Selected.Value,
CertDateComplete: CertDateComplete.SelectedDate,
RequesterComments: RequesterComments.Text,
Office365UserID: Office365UserID.Text
}
)
Thanks.