CRM 2011 Javascript でレコード内の特定のフィールドのスキーマ名を取得する方法は?
質問する
4404 次
1 に答える
5
フィールドの名前は、「id」プロパティと同じにする必要があります。
フィールドのイベントから作業している場合は、関数を定義するときにいつでも実行コンテキストを渡し、イベント コードで次のように使用できます。
executionContext.getEventSource().getName();
http://msdn.microsoft.com/en-us/library/gg334332.aspx
フィールド id/name (小文字) に基づいてスキーマ名 (大文字と小文字が混在) が必要な場合は、次のようなものを使用できます ( http://crmxpg.nl/wp/2010/10/19/how-to-に基づく)。 query-the-metadata-service-via-javascript )
function GetSchemaName() {
alert(gGetAttributeList(Xrm.Page.data.entity.getEntityName(), "thefieldname"));
}
//*********************************************************
gQueryMetadataService = function (request) {
var xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
xmlhttp.open("POST", '/mscrmservices/2007/MetadataService.asmx', false);
xmlhttp.setRequestHeader("Content-Type", "text/xml; charset=utf-8");
xmlhttp.setRequestHeader("SOAPAction", 'http://schemas.microsoft.com/crm/2007/WebServices/Execute');
var soapMessage = "<?xml version='1.0' encoding='utf-8'?>" +
"<soap:Envelope xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' " +
"xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/'>" +
"<soap:Header>" +
"<CrmAuthenticationToken xmlns='http://schemas.microsoft.com/crm/2007/WebServices'>" +
"<AuthenticationType xmlns='http://schemas.microsoft.com/crm/2007/CoreTypes'>" + AUTHENTICATION_TYPE +
"</AuthenticationType>" +
"<OrganizationName xmlns='http://schemas.microsoft.com/crm/2007/CoreTypes'>" + ORG_UNIQUE_NAME +
"</OrganizationName>" +
"<CallerId xmlns='http://schemas.microsoft.com/crm/2007/CoreTypes'>00000000-0000-0000-0000-000000000000</CallerId>" +
"</CrmAuthenticationToken>" +
"</soap:Header>" +
"<soap:Body><Execute xmlns='http://schemas.microsoft.com/crm/2007/WebServices'>" + request +
"</Execute></soap:Body>" +
"</soap:Envelope>";
xmlhttp.send(soapMessage);
return xmlhttp.responseXML;
}
gGetAttributeList = function (entityName, fieldname) {
var request = "<Request xsi:type='RetrieveEntityRequest'>" +
"<MetadataId>00000000-0000-0000-0000-000000000000</MetadataId>" +
"<EntityItems>IncludeAttributes</EntityItems>" +
"<LogicalName>" + entityName + "</LogicalName>" +
"<IsCustomizable>1</IsCustomizable>" +
"<RetrieveAsIfPublished>true</RetrieveAsIfPublished>" +
"</Request>";
var result = gQueryMetadataService(request);
var schemaNames = result.selectNodes("//EntityMetadata/Attributes/Attribute/SchemaName");
for (var i = 0; i < schemaNames.length; i++) {
if (fieldname === schemaNames[i].text.toLowerCase()) {
return schemaNames[i].text;
}
}
return null;
}
于 2012-05-16T14:21:41.323 に答える