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.

 

Using Qualifiers to Filter Sub-objects

This sample shows how you can use the qualifier attribute of tc:loop to refine the data that you want to retrieve.

It also shows how you can include different types of system fields as a qualifier.

This template is retrieving all of the active assignees within the selected claim. For each active assignee, it is retrieving:

  • The tasks that they perform where the rate is equal to $100.00.
  • Their skill level as an adjuster.
  • Their address within the city of Los Angeles.
  • The contacts that have a vendor relationship with them.

Boolean (Check Box)

<tc:loop select="AssigneeList" qualifier="IsActive=1">

<tc:data select="User"> <tc:data select="Contact">

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

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

Date Assigned:
<tc:data select="AssignedOn" />

<tc:data select="User"> <tc:data select="Contact">

Number

<tc:loop select="RateList" qualifier="RateAmount=100">Rate Information

Task Type
<tc:data select="TaskCategory/Name" />

Rate
<tc:data select="RateAmount" />

Effective From
<tc:data select="EffectiveFrom" />

Effective To
<tc:data select="EffectiveTo" />

</tc:loop>

List (Lookup Table)

<tc:loop select="SkillList" qualifier="Type_TreePosition=SKIL_ADST">Skill Information

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

Level of Expertise
<tc:data select="SkillLevel" />

</tc:loop>

Text

<tc:loop select="AddressList" qualifier="City=Los Angeles">Address Information

Type
<tc:data select="Type/Name" /> Street <tc:data select="Street" /> City <tc:data select="City" />

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

Postal Code
<tc:data select="PostalCode" />

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

Current On
<tc:data select="CurrentOn" />

</tc:loop>

Object (Another Record)

<tc:loop select="RightRelationList" qualifier="RightContact_DefaultCategory_TreePosition=CONT_VNDR">Conta ct Relations

<tc:data select="RightContact">

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

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

<tc:data select="RightContact">

Business Address:
<tc:loop select="AddressList" qualifier="Type_TreePosition=ADDR_BUS1">

Street
<tc:data select="Street" /> City <tc:data select="City" /> State <tc:data select="State" />

Postal Code
<tc:data select="PostalCode" />

</tc:loop>

</tc:data>

</tc:loop>

  • Was this article helpful?