Best Of
Re: Introduce Yourself!
Hello All,
I am Mark from Philippines. I am a new hire last March 2024 and will be joining ERP Customer Support. My hobbies are playing mobile games, singing and watching youtube documentary videos.
Thank you,
Mark
Re: Introduce Yourself!
Hello,
I'm Jyla, from the Philippines! 😍
I'd be joining ERP Technical Support ☺️
Looking forward to sharing insightful things with this community 🤩
Re: Introduce Yourself!
Hello!
I am Jahn Sommer Kieth Uy from Manila, Philippines
I am one of the Technical Support Engineers for Netsuite Connector
My hobby is being a DIY (Destroy it yourself) Mechanic 😅
Re: Introduce Yourself!
Hi everyone
Cyra De Lemos here from the Philippines. Currently a Technical Support Engineer - ERP.
When not at work, I watch series and play online games. Also, spend time with my loved ones.
Cheers
Cyra
Re: Introduce Yourself!
Hello Team,
I am John-John Abengoza, located in Manila, Philippines.
I am one of the Technical Support Engineer for SuiteBuilder.
See you around and Thank you!
Re: Introduce Yourself!
Hi everyone.
Jodel Paul here also known as Jody. Working from the Philippines as part of ERP.
Not much about me but I'm a low-key gamer but not that good.
Hope to work with you soon guys ♥️
Re: SP WFM how to auto deduct time amount on a shift or group
Thank you, I will check on getting a case filed.
Re: Saved Search: Days a Sales Order Was Open
Hi @Clarisa De Torres-Oracle ,
Your prompt response has been very helpful. Thank you so much for providing support. Got it!
Re: How to get Item Fulfillment Serial Numbers on a Packing Slip
Hi @User_80C0N
Please Hit the like / Awesome / Agree for the code comment I provided as a sign of gesture🙂 that would boost me for the time I spent for your requirement.
Re: How to get Item Fulfillment Serial Numbers on a Packing Slip
Got it!… im changing logic accordingly
<#list record.item as tranline>
<#assign itemName = tranline.item>
<#assign serialNumbers = tranline.serialnumbers>
<#assign itemIndex = -1>
<#list salesorder.item as soItem>
<#if soItem.type == 'Item' && soItem.item == itemName>
<#assign itemIndex = soItem_index>
</#if>
</#list>
<tr>
<td colspan="12" style="border: 0.5px;"><span class="itemname">${tranline.item}</span><br />${tranline.description}</td>
<td colspan="3" style="border: 0.5px;">${serialNumbers}</td>
<td align="right" colspan="2" style="border: 0.5px;">${(itemIndex != -1)?then(salesorder.item[itemIndex].quantityordered, '')}</td>
<td align="right" colspan="2" style="border: 0.5px;">${(itemIndex != -1)?then(salesorder.item[itemIndex].quantityremaining, '')}</td>
<td align="right" colspan="2" style="border: 0.5px;">${tranline.quantity}</td>
</tr>
</#list>
This code goes through each item in your Item Fulfillment document, kind of like checking off items from a shopping list. For every item it finds, it takes name and any serial numbers associated with it.
Then, it checks your sales order to see if there's a matching item. If it finds a match, it figures out how many of that item were ordered and how many are still needed.
After all that, it puts everything together on your packing slip: the item details, any serial numbers you noted during fulfillment, and the quantities that were ordered and are still left to pack.




