
Announcements
Hello,
i went live with a App yesterday wich generally runs pretty good, but it seems like i am unable to Patch People with an academic Title into a SharePoint List...
5 People with no academic Title already sent successfully an day off request, 2 People with academic title where not able to patch into SharePoint List, i have checked they have writing access.
Does someone know this problem and how i can resolve it?
here is the Patch String:
Patch(
Urlaubsliste;
Defaults(Urlaubsliste);
{
Titel: Radio1.Selected.Value;
Mitarbeiter: {
Claims: Concatenate(
"i:0#.f|membership|" & LookUp(
'MA_VG-Liste';
Mitarbeiter.DisplayName = txt_Mitarbeiter.Text;
Mitarbeiter.Email
)
);
DisplayName: txt_Mitarbeiter.Text;
Department: "";
Email: "";
JobTitle: "";
Picture: ""
};
Start_Abwesend: VarStart;
Ende_Abwesend: VarEnd;
Vorgesetzter: {
Claims: Concatenate(
"i:0#.f|membership|" & LookUp(
'MA_VG-Liste';
txt_Mitarbeiter.Text in Mitarbeiter.DisplayName;
Vorgesetzter.Email
)
);
DisplayName: txt_Vorgesetzter.Text;
Department: "";
Email: "";
JobTitle: "";
Picture: ""
}
};
Form_attatchment.Updates
)