I am trying to pull data from same linked entity twice like below:
<link-entity name='jt_country' alias='countrybill' to='billto_country' from='jt_name' link-type='outer'>
<attribute name='jt_countrycode' alias='billcountry'/>
</link-entity>
<link-entity name='jt_country' alias='countryship' to='shipto_country' from='jt_name' link-type='outer'>
<attribute name='jt_countrycode' alias='shipcountry'/>
</link-entity>
I am attempting to do this to pull this entity twice joining on 2 different fields to get the country for billing and country for shipping. I can get it to pull the first alias, but not the second. What am I missing?
*This post is locked for comments