Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
How to show Shipping Cost on SO PDF?
Have the following in the SO PDF code:
<#if record.altshippingcost?has_content>
<tr>
<td colspan="4"> </td>
<td align="right" style="font-weight: bold; color: #333333;">${record.altshippingcost@label}</td>
<td align="right">${record.altshippingcost}</td>
</tr>
</#if>
<tr>
<td colspan="4"> </td>
<td align="right" style="font-weight: bold; color: #333333;">${record.taxtotal@label}</td>
<td align="right">${record.taxtotal}</td>
</tr>
The altshippingcost field has a value:
The Sales order print does not populate this value:
Should print shipping cost before the tax total.
0