...
Panel | ||
---|---|---|
| ||
In fields metadata file, we define the entity's fields metadata required by the application's core mechanisms such as the security restrictions, query language, collaboration rules and workflow mechanisms.
What does this section cover?
|
Attributes
Name | Description | Value | ||
---|---|---|---|---|
id | Unique Identifier | Any | ||
name | A name that describes the field | Any | ||
xpath | The xpath field name | Any | ||
relatedentityxpath | The name of the related entity as it's defined in data class of the main entity | Anymainfield | The main field of the entity. | Any field of the entity |
fields | Contains the fields of the entity and their metadata information | A list of entity fields | ||
collections | Contains the collections of the entity and their metadata information | A list of entity collections |
Example
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
<entityfieldconfig> <mainfield> <id>custom_number</id> <name>key_number</name> <xpath>number</xpath> <qlfieldname>rental.number</qlfieldname> <segmentpreviewname>ENTITYNUMBER</segmentpreviewname> </mainfield> <fields> <field> <id>number<<id>custom_type</id> <name>Number<<name>key_type</name> <xpath>number<<relatedentityxpath>type</relatedentityxpath> <xpath>name</xpath> <workflowruleconditionincluded>FIELD_CONTAINS_VALUE</workflowruleconditionincluded> </field> <field> <id>name< ... </fields> <collections> <collection> <id>custom_items</id> <name>key_items</name> <relatedentityxpath/> <xpath>items</xpath> <qlfieldname>rental.items</qlfieldname> <method> <ejbname>CUSTOMCRMUIRental</ejbname> <methodname>loadItemsTab</methodname> <parameters> <parameter> <xpath>[DTO]</xpath> </parameter> </parameters> </method> <mainfield> <id>custom_serialNumber</id> <name>Name< <name>key_serialNumber</name> <relatedentityxpath>installedItem</relatedentityxpath> <xpath>name<<xpath>altCode</xpath> <qlfieldname>rental.items.serial_number</qlfieldname> </field>mainfield> <fields> <field> <id>type<<id>custom_code</id> <name>Type<<name>key_product_code</name> <relatedentityxpath>type<<relatedentityxpath>installedItem</relatedentityxpath> <xpath>name<<xpath>product/code</xpath> <qlfieldname>rental.items.product_code</qlfieldname> </field> ... </fields> </collection> </fields>collections> </entityfieldconfig> |