如何知道 CRM 中 Field Security Profiles 的创建日期/最后修改日期?

How to know the created date/ last modified date of Field Security Profiles in CRM?

目前我正在调查我的 CRM 实施中的一些问题,我相信有些更改不是我做的,尤其是在现场安全配置文件和团队中。

我们在 CRM 中是否有任何规定可以显示谁在何时做了什么更改!当我们在共享的开发环境中工作时,这将理想地帮助我找到合适的联系人。

如有任何帮助,我们将不胜感激。

谢谢

在这两个实体上,您都有 'createdby'、'modifiedby'、'createdon' 和 'modifiedon' 等字段。请记住,fileds 'modified...' 包含有关所做的最后更改的信息。您可以在 'advanced search'.

中列出所有这些字段

运行 FetxhXML Builder 中的这个查询

<fetch count="50" >
  <entity name="fieldsecurityprofile" >
    <attribute name="name" />
    <attribute name="modifiedby" />
    <attribute name="createdby" />
    <attribute name="modifiedon" />
    <attribute name="createdon" />
  </entity>
</fetch>

执行查询后,在“显示选项”菜单中选择“友好名称”以查看上次进行更改的用户的名称。