Skip to main content
Mitratech Success Center

Client Support Center

Need help? Click a product group below to select your application and get access to knowledge articles, webinars, training content, and release notes or to contact our support team.

Authorized users - log in to create a ticket, view tickets status and check your success plan details.

 

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?