Skip to main content
Mitratech Success Center

Retrieving Data through Custom Fields of Type Custom Object

The following sample is used to retrieve data from the parent record of the Claim identified in a custom field of type Custom Object (MasterClaims).
 

<tc:detail select="CLAM/MasterClaims">
<tc:data select="Parent">

Master Claim's Parent (Policy) Information

Number:
<tc:data select="NumberString" />

Name:
<tc:data select="Name" />

Categories List:
<tc:loop select="DetailList">

<tc:data select="Category/Name" />

</tc:loop>

Default Category:
<tc:data select="DefaultCategory/Name" />

Policy Effective Date:
<tc:detail select="PLCY/EffectiveDate" />
Good Driver?: <tc:detail select="PLCY/GoodDriver" />

Policy Postal Code:
<tc:detail select="PLCY/PolicyZip" />

Policy State:
<tc:detail select="PLCY/PolicyState" />

Comments:
<tc:detail select="PLCY/Comments" />

</tc:data> </tc:detail>

 

  • Was this article helpful?