My Stuff
Comments
-
Mark thanks for the quick reply. Tried your suggestion but got the same error: "The total inventory detail quantity must be 1". Not using serialized/lot numbered items. Standard inventory/assembly items. var fulfillment_record = nlapiTransformRecord('transferorder', 534568, 'itemfulfillment', {recordmode: 'dynamic'});…
-
Also doesn't work without dynamic mode toggled: var fulfillment_record = nlapiTransformRecord('transferorder', 534568, 'itemfulfillment'); fulfillment_record.selectLineItem('item', 1); fulfillment_record.setCurrentLineItemValue('item', 'itemreceive', 'T'); fulfillment_record.setCurrentLineItemValue('item', 'quantity', 1);…
-
Genius. Thank you. This alleviates one of my biggest headaches. Here is the code on the GET: html += '<form action="/app/site/hosting/scriptlet.nl?script=377&deploy=1" method="post" enctype="multipart/form-data">' html += 'First name: <input type="text" name="fname"><br>' html += '<input type="file" name="nsfile"…
-
JohnCCole, how did you get it to work? Could you provide some code samples? I tried using the following code, but the file object is always null on the form post. On Get: html += '<form action="/app/site/hosting/scriptlet.nl?script=377&deploy=1" method="post" enctype="multipart/form-data">' html += 'First name: <input…
-
I attached a pic of the code. I tried adjusting the code and using nlapiResolveUrl but both ways resulted in same error: Uncaught DOMException: Failed to execute 'send' on 'XMLHttpRequest': Failed to load 'https://forms.na2.netsuite.com/app/com...
-
Sorry for the vague post...here's more: I have created a custom picking ticket with item, quantity and bin details. When the user clicks "fulfill" on the sales order, it take them to the fulfillment page, and on this page there is a link to the custom picking ticket. When they click the custom picking ticket it should…
-
Correct. This really solved a long-standing deficiency in my understanding.
-
We don't use the pick/pack/ship. We simply fulfill the SO after the items are physically picked and packed. The first step is to create a custom picking ticket so that everyone (i.e. customer service, warehouse manager, etc.) knows what is being picked. The custom picking ticket allows the user to select the…
-
Hi RGrier, did you ever get this resolved? I'm having trouble with the same error message on a TO > fulfillment transform Suitelet. Code is below. Any ideas would be greatly appreciated. I nearly lost my marbles trying to figure out why it won't work... var fulfillment_record = nlapiTransformRecord('transferorder', 534568,…
-
I worked with NetSuite support and they concluded that it will work after the next update to NS 18.1.
-
What functions/API do I use to add the inventory detail via the client onchange script? I tried the following code (in bold) but it doesn't work and doesn't throw any error: var linecount = nlapiGetLineItemCount('item'); for(i=1; i <= linecount; i++){ var itemid = nlapiGetLineItemValue('item', 'item', i) var itemreceive =…