I'm creating a Transfer Order using suitescript an...
# suitescript
e
I'm creating a Transfer Order using suitescript and I get Inventory Warnings, is it possible to disable Inventory Level Warnings? I want to keep the warnings in the standard UI, but not in the script.
s
I dont think those warnings prevent/stop suitescript from creating the transaction.
s
I create transfer orders via suite talk API and just ignore warnings and only catch error
e
We create some massive Transfer Orders (250 items) and I feel the checks are a bottleneck (maybe they aren't?)
s
What type of script is creating the TO?
e
A button on a suitelet calls a function in another file
s
So its's happening client side? Maybe re-architect to make it happen serverside and the warnings shouldnt happen
e
Interesting... I have a Suitelet with the item list and the button. To be able to call the button I use a second file, where I create and save the TO... Do you mean that this second file is running in the Client Side? How do I aproach the change to Server Side? Sorry if the question is too basic.
b
Share the code
s
In general, when you click a button on the page, it either submits the page (goes to POST on the suitelet), or the handler of the button is occurring live and lives in a client side script.