The following line of code run from within the context of an
opportunity would return all opportunities that also have a Customer selected.
<link-entity
name="account" from="accountid" to="customerid"
visible="false" alias="accountid">
If you want to show all Opportunities regardless of whether a customer has been added or not then you need to add in link-type=”outer” as per below.
<link-entity
name="account" from="accountid" to="customerid"
visible="false" link-type="outer" alias="accountid">
Hope this helps
No comments:
Post a Comment