Description
This element is used to display a label on the user interface.
Attributes
Name | Description | Value |
---|---|---|
id | Unique Identifier | Any |
name | Entity Name | Any |
description | Entity Description | Any |
tablename | The Database table name which corresponds to the entity | Any of the database table name that exists in the database |
classname | The path of the data class | Any of the data classes that corresponds to the entity |
typeentityid | The identifier of a related entity where corresponds to the type information of the current entity. | Any of the entity ids defined in the entities metadata file |
masterentityid | ||
moduleid | The identifier of the module the entity belongs to. | Any of the module ids defined in the modules metadata file |
metadatafile | The name of the metadata file the entity belongs to. | Any of the metadata file name defined in the fields metadata folder |
csrexcluded | Defines if Conditional Security Restrictions (CSR) are excluded or not from the ability to restrict features of the system related with the entity. | true or false |
plarexcluded | Defines if any Privacy Level Assignment Rules (PLAR) are excluded or not from the ability to automatically apply privacy levels on entity records. | true or false |
acrexcluded | Defines if Automatic Security Restrictions (ACR) are excluded or not from ability to automatically apply entity assignments. | true or false |
Examples
<entityconfig> <entities> ... <entity> <id>PRODUCTS</id> <name>Products</name> <description></description> <tablename>PRODUCTS</tablename> <classname>com.crm.dataobject.products.CRMDOProduct</classname> <typeentityid>PRODUCTTYPES</typeentityid> <masterentityid></masterentityid> <moduleid>PRODUCTS</moduleid> <metadatafile>products</metadatafile> <csrexcluded>false</csrexcluded> <plarexcluded>true</ <acrexcluded>true</acrexcluded> </entity> <entity> <id>PRODUCTTYPES</id> <name>Product Types</name> <description></description> <tablename>PRODUCTTYPES</tablename> <classname>com.crm.dataobject.products.CRMDOProductType</classname> <typeentityid></typeentityid> <masterentityid></masterentityid> <moduleid>PRODUCTS</moduleid> <metadatafile></metadatafile> <csrexcluded>true</csrexcluded> <plarexcluded>true</plarexcluded> <acrexcluded>true</acrexcluded> </entity> ... </entities> </entityconfig>