how to find user manager?

ram2497
Tera Contributor

how to find user manager?

1 ACCEPTED SOLUTION

Ashutosh Munot1
Kilo Patron
Kilo Patron

HI, 

 

I have some different question? Where exactly you want to do this?

 

If its a client side then i will suggest you to use GlideAjax and script include.

 

If its a Business rule i will tell you to do either do dot.walking or use gs.getUser.getManagerID()

 

Thanks,
Ashutosh Munot

View solution in original post

7 REPLIES 7

Ashutosh Munot1
Kilo Patron
Kilo Patron

HI, 

 

I have some different question? Where exactly you want to do this?

 

If its a client side then i will suggest you to use GlideAjax and script include.

 

If its a Business rule i will tell you to do either do dot.walking or use gs.getUser.getManagerID()

 

Thanks,
Ashutosh Munot

Jatin
Tera Contributor

javascript:gs.getUser().getRecord().getDisplayValue('manager');

This will help you to get the current logged in user's manager name.

Either try this or use Glide Ajax and Script include to get it from the user table.

If you want the fully coded solution, do let me know.

can you provide a fully coded solution?