Dynamics 365 JavaScript Get User

5 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);

}

 

Carl de Souza
Keep learning. Keep building.

Explore AI, agents & Microsoft technology.

I share practical ideas, tutorials, and videos about AI, AI agents, Microsoft technologies, and the Power Platform.

Subscribe on YouTube →
Carl de Souza Enterprise Architect at Microsoft · AI Technology Expert

5 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 *