Tag Naming Conventions and its meaning
Copy
In the above image tag value is given as <%supplier_name%>. Let us see what it means
- <%..%> Indicates, processing at server end. Please note that it is mandatory to follow this convention.
- <%supplier_name%> Here ‘supplier_name’ is actually the name of the Property of ‘Supplier’ Item Type. By this tag, application recognizes this property value to be fetched from Aras Innovator and substitute in the MS Word at relevant placeholder
- <%SupplierToPart.related_id.name%> Here involves relationship.
- ‘SupplierToPart’: is the RelationshipType of Supplier Item Type
- ‘related_id’ is the property pointing to Part Item Type
- ‘related_id’ is the property pointing to Part Item Type
So, this tag value actually fetches the value of Property ‘name’ attached to ‘Part’ item type.
Using this naming convention, the server follows a specific sequence when processing a tag at server
- Go to ‘SupplierToPart’
- Search for related_id and get the Data Source value which is ‘Part’ in this case
- Go to Part and access the ‘name’ property value.