Hi
As I am learning powerapps,I have a question.
So I have added 2 more columns in the sp list:1) privacy settings - public or private (choice column) and external sharing: yes/no. And on the powerapp- privacy settings have a dropdown control and external sharing has a toggle control. And as I did not use forms, I am using patch function on the submit button to save data on the sharepoint list. But on doing so, I get an error(attached screenshot).On checking the app checker symbol - error shows on runtime and not formula. what does that mean?
The formula on submit button is:Patch(Requests,
{Title:TextInputSiteName.Text,'Site Type':Radio.Selected,Alias:TextInputAlias.Text ,Name:TextInputName.Text, Email:TextInputEmail.Text, Purpose:TextInputSitePurpose.Text,'Privacy Settings':Dropdown2.Selected,'External Sharing':Toggle1.Value, Owner:{
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Department: "",
Claims: "i:0#.f|membership|" & Lower(ComboBox1.Selected.DisplayName),
DisplayName:ComboBox1.Selected.DisplayName,
Email: ComboBox1.Selected.Mail,
JobTitle: "",
Picture: ""
}
});
Everything was working fine until I added the privacy setting and external sharing.
Any help on this, would be much appreciated. Thanks