Skip to main content
Derick Ratliff (PDQ) が「#Quotes」で質問

Hey Trailblazers!

 

Looking for some assistance on gaining the ability to filter out specific quote line items when generating a Quote PDF.  We're using the Sales Cloud Quote Template functionality and do not have CPQ.  Just curious how other admins have tackled this either via potential 3rd party apps or custom development?

 

Thanks!

 

#Quotes #Quote Line Items

1 件の回答
  1. Michael Brown (Salesforce) Forum Ambassador
    2023年11月9日 16:33

    Hey Derick, 

     

    I've usually resorted to third party apps, like Conga Composer which let you have more control, such as conditional visibility and e-signature. Outside of that one trick you can do is create a rich text field on your object, and using flow, populate this field with HTML in the form of a table. Your flow could house the logic for dynamically generating this text with the appropriate line items.  Then you could put this field in your Quote Template.

    <table border="1">

    <th>Product Name</th><th>Price</th>

    <tr><td>Product 1</td><td>$1.00</td></tr>

    </table>

    Thanks,

    Mikey

0/9000