Dear Community,
i want to remove the current User from a multi-selection person/group field (Confirmation_is_requested_from) in Sharepoint and Patch the User to a other field (Confirmation_exists_from) and after that, i want alle the Person who didn't confirmed to be write in the field (Confirmation_pending_from) and i dont know how to do that.
The Szeanrio:
After a file is uploaded to a sharepoint library, the manager can enter people (multi-select) who need to read that file (PDFs only). For this purpose there is an app that shows the user all the files assigned for him. He can read the files in a pdw viewer (works perfectly). The user can then select the files (checkbox) and confirm. Now I want the person to be deleted from the sharepoint list and added to the other field (as wrote above).
Previously, I saved the sharepint list as a collection.
When the app starts:
Set(pdfViewerVisible; false);;
ClearCollect(All_Documents; Dokumente_Arbeitssicherheit);;
OnCheck:
Collect(ReadedFiles; ThisItem)
OnUnCheck:
Remove(ReadedFiles; ThisItem)
Sharepoint lib
Collections
Checkbox and confirm button
Thank you!