Use lineitemsSOQL for multiple filtered related lists
Avoid shared filter behavior when one template contains more than one filtered related list.
Last updated
Was this helpful?
Was this helpful?
<!--{{!
<lineitems>
<listname>opportunitylineitems</listname>
<where>PricebookEntry.Product2.Family = 'Hardware'</where>
<column>PricebookEntry.Product2.Name</column>
<column>Quantity</column>
<column prefix="$" format-number="#,###.00">TotalPrice</column>
</lineitems>
}}--><!--{{!
<lineitemsSOQL>
<soql>
SELECT PricebookEntry.Product2.Name, Quantity, TotalPrice
FROM OpportunityLineItem
WHERE OpportunityId = '{{!Opportunity.Id}}'
AND PricebookEntry.Product2.Family = 'Hardware'
</soql>
<column>PricebookEntry.Product2.Name</column>
<column>Quantity</column>
<column prefix="$" format-number="#,###.00">TotalPrice</column>
</lineitemsSOQL>
}}-->