Hi @timl ,
So i have a button in each gallery item ,which moves the file from one doc library to another, using a combination of Graph API's 'PUT' method and Patch function. Here is a fragment of the Patch with the two columns i have trouble with:
Patch(
'HR Process Archived Documents',
First(
Filter(
'HR Process Archived Documents',
ID = varLastArchivedFile.ID)
),
{
'Process Name' : galHome.Selected.Process_x0020_Name,
'Process Number' : galHome.Selected.Process_x0020_Number,
//Name : galHome.Selected.'{Name}',
'Document Author': galHome.Selected.Document_x0020_Author,
//'Created By': galHome.Selected.Author,
'Process is stored in GRC': galHome.Selected.Process_x0020_is_x0020_stored_x0020_in_x0020_GRC,
'Process Applicability': colProcessApplicability, <---
'Processor of the process': colProcessor <---
}
)
This works fine but only for the session that the User is currently working in. When he opens the app again, the collections are empty. And these two columns (
'Process Applicability' and 'Processor of the process') are mutliselect LookUp type columns
Also, i am not able to access these lookup columns through ThisItem.<column name> at any stage..