megaphone
Update your Profile with your Support type to get your Support Type badge.
Nominate Your Peers for NetSuite Support Community's Choice of the Quarter! Submit your nomination today.
Expand your NetSuite knowledge by joining our Ask A Guru Live sessions. RSVP on this event now.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here!
What Topic Should We Cover Next? Your idea could be our next feature—drop your suggestion now!
No Limits. Just possibilities. Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Discover what's next at SuiteConnect Tour 2026.
Try Intelligent Payment Automation – Fee Free For Your First Month For more information, visit this thread.

My Stuff

RobertBongers Red Ribbon

Comments

  • Hi Tiru, Thanks for the reply. I think i've made my title a bit misleading. I want to change the Work Order Status through a workflow (with a button) from 'Planned' to 'Released' without the 'Closed' status in between. (that's what I meant with directly). Sorry for the confusion.
  • Thanks for the reply, It appears the problem was somewhere else. The Sales Order line items didn't get a Location filled in from the start. Because of that the location fields weren't set on the Work order, which in turn gave these issues. So the original problem is solved. What i'm still curious about is: If the Special…
  • Just wanted to let you know that we've found the problem. After we changed <#list record.item as tranline> to <#list salesorder.item as tranline> the field started working. I was under the impression that since we were in the "<if salesorder.item>" statement the information was called from the Salesorder, but that was not…
  • Okay, another update. I'm 100% sure i need the field with ID=quantitybackordered from the Sales Order. That's the field I want to show on the Packing Slip PDF/HTML Template. <#if salesorder.item?has_content> <#list record.item as tranline> ${tranline.quantitybackordered} </#list> </#if> But the code above still gives me…
  • Just a quick update. I just tried to add both fields (${tranline.quantityordered + tranline.quantity}), and the result came back as 1. So it might be that subtracting them results in a (negative) value that NetSuite can't handle.
  • Hi @Kristoffer Viray-Oracle , I've tried your code but sadly didn't have any luck. It first gives me the errors when I try to save. After i've forced save and try to print it gives me a NetSuite notice with the same error -------------------- The template cannot be printed due to the following errors: Error on line 211,…
  • Hi @Kristoffer Viray-Oracle, Thanks for the reply! Just tried the code, and when I try to print the Item Fulfillment the following error occurs: The template cannot be printed due to the following errors: Error on line 211, column 39 in template. Detail... For "-" right-hand operand: Expected a number, but this has…