CRM以编程方式创建字段

本文关键字:创建 字段 方式 编程 CRM | 更新日期: 2023-09-27 18:04:03

是否有办法为实体创建一个全新的字段例如插件或web-service(然后与视图关联)?

我已经在网上找过了,但是什么也找不到。

CRM以编程方式创建字段

您将需要执行createattributerrequest来更改CRM元数据。

StringAttributeMetadata stringAttribute = new StringAttributeMetadata
{
    // Set base properties
    SchemaName = "new_string",
    DisplayName = new Label("Sample String", _languageCode),
    RequiredLevel = new AttributeRequiredLevelManagedProperty(AttributeRequiredLevel.None),
    Description = new Label("String Attribute", _languageCode),
    // Set extended properties
    MaxLength = 100
};
CreateAttributeRequest createAttributeRequest = new CreateAttributeRequest
{
    EntityName = "contact",
    Attribute = stringAttribute 
};
serviceProxy.Execute(createAttributeRequest);

你将需要自定义实体视图。这些以记录的形式存储在CRM中,并用XML表示。这是一个创建的例子,但是你也可以做一个更新。

string layoutXml = @"<grid name='resultset' object='2' jump='name' select='1' preview='1' icon='1'>
    <row name='result' id='contactid'>
        <cell name='name' width='150' /> 
        <cell name='new_string' width='150' />
    </row>
</grid>";
string fetchXml = @"<fetch version='1.0' output-format='xml-platform' mapping='logical' distinct='false'>
    <entity name='contact'>
        <order attribute='new_string' descending='false' />
        <attribute name='new_string' />
        <attribute name='contactid' /> 
    </entity>
</fetch>";
SavedQuery sq = new SavedQuery
{
    Name = "A New Custom Public View",
    Description = "A Saved Query created in code",
    ReturnedTypeCode = "contact",
    FetchXml = fetchXml,
    LayoutXml = layoutXml,
    QueryType = 0
};
serviceProxy.Create(sq);

最后将需要发布自定义,以便更改对用户可用。

PublishAllXmlRequest publishRequest = new PublishAllXmlRequest();
serviceProxy.Execute(publishRequest);

此代码未经测试,但从示例链接中拼凑在一起,因此应该可以正常工作

使用CreateAttributeRequest创建具有所需元数据的新属性。

以编程方式将其添加到视图中并不简单。您需要编辑Layout XML元素并添加新创建的属性。