Hello everyone,
I hope someone can help me with the following scenario. I have the following collection, which stores the subordinates of my manager. So I retrieve them and save them in the collection.
ClearCollect(mySubordinatePersons;
'Office365User'.DirectReportsV2('Office365User'.MyProfileV2().mail).value
);;
I also have a variable that saves my login file.
Set(
vCurrentUser
; First( 'Office365-User'.SearchUser({searchTerm: User().Email})
));;
I have a small app that displays projects in a gallery.
I want that the gallery show only my projects and those of my subordinates. So if you don't have any subordinates, the app should only show my projects.
I would love to see some Hints. You Guys are awesome! Thanks for Help!