有没有办法为实体创建一个全新的字段?插件或Web服务(然后与视图关联)?

我浏览了互联网,但找不到任何东西。

最佳答案

您将需要执行CreateAttributeRequest来更改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);


然后,您需要Customize the Entity View。这些作为记录存储在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);


最后,将需要Publish Customizations,以便用户可以使用此更改。

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


这段代码未经测试,但是通过示例链接拼凑而成,因此希望可以正常工作。

关于c# - CRM以编程方式创建字段,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39149691/

10-13 08:37