My Stuff
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…