AgileApps Support Wiki Pre Release

Difference between revisions of "Common:record fields"

From AgileApps Support Wiki
imported>Aeric
imported>Aeric
Line 12: Line 12:
<tag type="Priority_Tag">9467890</tag>
<tag type="Priority_Tag">9467890</tag>
</syntaxhighlight>
</syntaxhighlight>
:*

Revision as of 05:23, 4 September 2017

  • Each <fieldN> element has the name of a field in the object. For example:
<syntaxhighlight lang="java" enclose="div">

<company_name>ABC Co.</company_name> <street_address>21 Jump Street</street_address> </syntaxhighlight>

  • When specifying a Multi Object Lookup field, you specify the object identifier (name or ID) in the type attribute, and the record ID as the field value. The syntax looks like this:
<syntaxhighlight lang="java" enclose="div">

<field_name type="{objectName}">{record_id}</field> </syntaxhighlight>

For example, in the Sample Order Processing System, if priority tags were in a separate table, then the field might look like this:
<syntaxhighlight lang="java" enclose="div">

<tag type="Priority_Tag">9467890</tag> </syntaxhighlight>