Add a section that includes these lines:<type_TYPE>
<Hierarchical_Data toolBarMenu=<"MENUNAME">
<whereUsed relatedBy="<STRINGRESOURCEKEY>" expandRel="<SYMBOLIC RELATIONSHIP PATTERN>"
application="<SUITEKEY>" fromTypes="<OBJECTS EXPECTED FOR HIERARCHICAL PATTERN LOOKUP>" />
</Hierarchical_Data>
<Related_Data>
<whereUsed relatedBy="<STRINGRESOURCEKEY>" select="<OBJECT SELECT>"
application="SUITEKEY" />
</Related_Data>
</type_TYPE>
where:TYPE is the object type that will include a Where Used/Related category.
MENUNAME is the name of the toolbar
STRINGRESOURCEKEY.
SYMBOLIC RELATIONSHIP PATTERN is the symbolic name or the relationship used for evaluation.
SUITEKEY is the ENOVIA product.
OBJECTS EXPECTED FOR HIERARCHICAL PATTERN LOOKUP is an object type that could be listed on the Where Used page, if it meets the requirements.
OBJECT SELECT is the MQL select clause to evaluate .
For example:<type_Products>
<Hierarchical_Data toolBarMenu="PLCChangeMenu">
<whereUsed relatedBy="emxWhereUsed.RelatedBy.ManagedUnder" expandRel="relationship_Products"
application="ProductLine" fromTypes="type_Model" />
<whereUsed relatedBy="emxWhereUsed.RelatedBy.UsedinLogicalStructure" expandRel="relationship_LogicalFeatures"
application="ProductLine" fromTypes="type_Products" />
<whereUsed relatedBy="emxWhereUsed.RelatedBy.UsedinLogicalStructure" expandRel="relationship_LogicalProducts"
application="ProductLine" fromTypes="type_Products" />
</Hierarchical_Data>
<Related_Data>
<whereUsed relatedBy="emxWhereUsed.RelatedBy.UsedinRulesAsLeftExpression"
select="to[Logical Features].tomid[Left Expression].from.id"application="Configuration" />
<whereUsed relatedBy="emxWhereUsed.RelatedBy.UsedinRulesAsRightExpression"
select="to[Logical Features].tomid[Right Expression].from.id"application="Configuration" />
</Related_Data>
</type_Products>