Hi everyone,
1. As shown on the image above, how do I fix that error?
2. I also would like to know how do I set Log In as Manager for specific people such as when button Log In as Manager is clicked and it detect that Person_A@mail.com and Person_B@mail.com account, access is granted. Else access is restricted.
Thanks!!
Solved! Go to Solution.
Hi @HF306 ,
Try this
Set(_selectedAprover,Office365Users.Manager(Office365Users.MyProfile().Id))
If you actually want the manager's name
Set(_selectedAprover,Office365Users.Manager(Office365Users.MyProfile().Id).DisplayName)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @HF306 ,
Try this
Set(_selectedAprover,Office365Users.Manager(Office365Users.MyProfile().Id))
If you actually want the manager's name
Set(_selectedAprover,Office365Users.Manager(Office365Users.MyProfile().Id).DisplayName)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi WarrenBelz,
appreciate the help!! ^_^
Thank you @WarrenBelz for this solution,
I have just downloaded the Leave Request Template and got the same error message, your solution fixed the issue
Kind regards
Claire
Set(
_selectedApprover,
Office365Users.Manager(_myProfile.Id)
);
Set(
_selectedApproverPhoto,
If(
Office365Users.UserPhotoMetadata(_selectedApprover.Id).HasPhoto,
Office365Users.UserPhoto(_selectedApprover.Id)
)
)
I want to set Manager as kat@contoso.com so that other uses within my Tenant can not login as manger.
how do i go about putting in that validation?
User | Count |
---|---|
263 | |
110 | |
92 | |
55 | |
41 |