I have a lookup field in the form, before select the related entity for the lookup, I check some conditions, if not pass, I overwrite the lookup onclick event to alert user; else, I need to overwrite the onclick event to show the lookup window to allow user to select entity.

So I need the object type code of this lookup, but before select there is no value then I can't get the object type code by use this code: var objecttypecode = Xrm.Page.getAttribute("field id").getValue()[0].type;

How to get object type code by entity name?

link|improve this question

43% accept rate
I find out the way: function GetObjectTypeCode(entityName) { try { var lookupService = new RemoteCommand("LookupService", "RetrieveTypeCode"); lookupService.SetParameter("entityName", entityName); var result = lookupService.Execute(); if (result.Success && typeof result.ReturnValue == "number") { return result.ReturnValue; } else { return null; } } catch (ex) { throw ex; } } – nixjojo Feb 21 at 7:25
2  
Please answer your own question and accept it. – Anwar Feb 22 at 6:12
feedback

1 Answer

up vote 3 down vote accepted

I find out the way:

function GetObjectTypeCode(entityName) {


try {

    var lookupService = new RemoteCommand("LookupService", "RetrieveTypeCode");
    lookupService.SetParameter("entityName", entityName);
    var result = lookupService.Execute();

    if (result.Success && typeof result.ReturnValue == "number") {
        return result.ReturnValue;
    } else {
        return null;
    }
}
catch (ex) {
    throw ex;
}

}

link|improve this answer
While this may work now, to my best knowledge, using RemoteCommand in custom code has always been unsupported and is not guaranteed to always work. – GCATNM Mar 9 at 22:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.