Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

NameDescriptionValue
id

Unique Identifier

Any
nameEntity NameAny
descriptionEntity DescriptionAny
tablenameThe Database table name which corresponds to the entityAny of the database table name that exists in the database
classnamethe path of the data classAny of the data classes that corresponds to the entity
typeentityid  
masterentityid  
moduleidThe identifier of the module the entity belongs to.Any of the module ids defined in the modules metadata file
metadatafileThe name of the metadata file the entity belongs to.Any of the metadata file name defined in the fields metadata folder
csrexcludedDefine Defines if Conditional Security Restrictions (CSR) are excluded or not from the ability to restrict features of the system including data entry pages fields, based on conditions, which can be applied on specific organizational unitsrelated 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

Code Block
languagexml
<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>