mescalante
07/03/2025, 10:28 PMCeligo AI
07/03/2025, 10:28 PMAI generated answer (using internal Slack threads):To modify the Packing List in NetSuite, you can follow these steps: 1. Navigate to the customization section in NetSuite. 2. Look for the packing slip form. 3. Customize it according to your needs. If you want to show a 'pack rule' on the 'Picking Ticket' template, you need to ensure that 'pack rule' is a custom field. You can add it as a body field or onto a line item. If your packing slips list the components of an item group, and you want to remove that line level detail, you can do so by unticking
DISPLAY COMPONENTS ON TRANSACTIONS
on the Item Group's record, BOM (Members) tab.
If the box is unticked but still shows on the packing slip, you can edit the Advanced PDF in a similar but opposite way that SA 80948 describes.
Here is a sample code snippet that you can use as a reference:
html
<#list salesorder.item as tranline><tr>
<#if tranline.custcol_itemtype = ‘Kit/Package’>
<td colspan=“12”><span class=“itemname”>${salesorder.item[0].item@label}</span><br />${tranline.description}</td>
<#elseif tranline.custcol_itemtype !=‘Kit/Package’>
<td colspan=“12”><span class=“itemname”>${tranline.item}</span><br />${tranline.description}</td>
</#elseif>
</#if>
<td colspan=“12”><span class=“itemname”>${tranline.item}</span><br />${tranline.description}</td>
<td colspan=“3”>${tranline.options}</td>
<td align=“right” colspan=“4”>${tranline.quantityordered}</td>
<td align=“right” colspan=“4”>${tranline.quantityremaining}</td>
<td align=“right” colspan=“4”>${tranline.quantity}</td>
</tr>
</#list></table>
******
Disclaimer:
This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes.
******Celigo AI
07/03/2025, 10:28 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.836660922
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.790769517
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.787444413
Celigo AI
07/03/2025, 10:28 PM