CRM2011 如何在Javascript中通过实体名称获取对象类型代码?

发布于 2025-01-07 17:11:26 字数 278 浏览 1 评论 0原文

我在表单中有一个查找字段,在选择查找的相关实体之前,我检查一些条件,如果不通过,我覆盖查找 onclick 事件以提醒用户;否则,我需要覆盖 onclick 事件以显示查找窗口以允许用户选择实体。

所以我需要此查找的对象类型代码,但是在 select 之前没有值,那么我无法使用以下代码获取对象类型代码: var objecttypecode = Xrm.Page.getAttribute("field id") .getValue()[0].type;

如何通过实体名称获取对象类型代码?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

仄言 2025-01-14 17:11:26

我找到了方法:

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;
    }
}

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;
    }
}
箜明 2025-01-14 17:11:26

支持的方法之一是使用元数据服务,然后检索对象类型代码等(实体类型代码)。

One of the supported way of doing this is using the Metadata service and then retrieving the Object Type Code or etc (entity Type Code).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文