Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :
Microsoft Dynamics CRM (Archived)

EntityId and field value on OnChange event of field

(1) ShareShare
ReportReport
Posted on by 12,081 Moderator

Hi all

I need EntityId and field value on OnChange event of field. I write the following code on OnChange event of field:

function SelectUser()
{
debugger;
var entityId = Xrm.Page.data.entity.getId();
var User = Xrm.Page.getAttribute('aw_mc_user').getValue();

}

and get the following error.

2148.11.jpg

This is my form and my requirement is

1581.111.jpg

When I select the lookup field I need to fill all the form fields. For that purpose I need these two values. Please suggest me. How can I full fill me requirement?

Thank You

*This post is locked for comments

  • Verified answer
    Abdul Wahab Profile Picture
    Abdul Wahab 12,081 Moderator on at
    RE: EntityId and field value on OnChange event of field

    Hi all

    There is no entity id because no record is saved. This is a lookup field and we can not get the value of lookup field in this way. correct code is given

    function SelectUser()
    {
    debugger;
    var entityId = Xrm.Page.data.entity.getId();
    var User = Xrm.Page.getAttribute('axp_mc_user');
    var UserObjValue = User.getValue();
    if ((User != null))
    {
    var Uservalue = UserObjValue[0].name;
    var Userid = UserObjValue[0].id;
    }

    }

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Announcing Our 2025 Season 1 Super Users!

A new season of Super Users has arrived, and we are so grateful for the daily…

Vahid Ghafarpour – Community Spotlight

We are excited to recognize Vahid Ghafarpour as our February 2025 Community…

Tip: Become a User Group leader!

Join the ranks of valued community UG leaders

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 292,516 Super User 2025 Season 1

#2
Martin Dráb Profile Picture

Martin Dráb 231,321 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans