Dynamics 365 JavaScript Get User

4 Comments

To get the Dynamics 365 user name and user id in JavaScript, create a function and attach and publish:

 function GetUser() {
  var UserId = Xrm.Page.context.getUserId();
 var UserName = Xrm.Page.context.getUserName();
 alert(UserId + " " + UserName);

}

 

THANKS FOR READING. BEFORE YOU LEAVE, I NEED YOUR HELP.
 

I AM SPENDING MORE TIME THESE DAYS CREATING YOUTUBE VIDEOS TO HELP PEOPLE LEARN THE MICROSOFT POWER PLATFORM.

IF YOU WOULD LIKE TO SEE HOW I BUILD APPS, OR FIND SOMETHING USEFUL READING MY BLOG, I WOULD REALLY APPRECIATE YOU SUBSCRIBING TO MY YOUTUBE CHANNEL.

THANK YOU, AND LET'S KEEP LEARNING TOGETHER.

CARL

https://www.youtube.com/carldesouza

 

ABOUT CARL DE SOUZA

Carl de Souza is a developer and architect focusing on Microsoft Dynamics 365, Power BI, Azure, and AI.

carldesouza.comLinkedIn Twitter | YouTube

 

4 Responses to Dynamics 365 JavaScript Get User

  1. Hello
    That method works to create a function that returns me values ​​that the user has in his id and to be able to use them to iron them in fields of the entity that he is working on?

  2. Hi Sir, Good Morning Since I am new to D 365 Could you Please help me to understand where should I register this code? I Mean on which entity?

Leave a Reply

Your email address will not be published. Required fields are marked *