My Stuff
Comments
-
Hi Suraj, We cannot change/control Script execution time as it is defined by netsuite by default. As a work arround, what we can do is we can make the results into small chunks based on the script usage limit and execute the scheduled script separately for each chunk by creating multiple deployments on a schedule script.…
-
@User_A5TJS , Hi Suraj, How you are doing good! You mean to say, we need to track for the error saying "SSS_USAGE_LIMIT_EXCEEDED" and re-scheduling it? If not please let me know how do you manage to yield the script which is re-scheduling every one hour? Thanks in advance Durga Rao
-
How to replicate the issue? created a transaction saved search(line level) which i got 17lac results. written the code to read the results of saved search under the getInputData() stage. var extSSObj = search.load( { id: savedSearchId } ); var extFils = extSSObj.filters; var extCols = extSSObj.columns; var existingSS =…
-
Thanks for the clarification Richard. what you are saying is absolutly correct but My saved search is having huge data of arround 17lakhs search results where it is taking more than 3600secs in the getInputData stage. what is the solution to yeild the script after the specified time in that stage?
-
Please find the screenshot of log The script exactly stopped after 1 hour and got the above log which is highlighted. the script is not yeilding by its own i guess.
-
@Leonard Mallare-Oracle , Thanks for the advice. My use case is very simple that I wanted to use single sign on feature of netsuite for both netsuite and SCA website login where as netsuite is giving single Entity ID for both and azure is expecting unique entity ID for each instance. I have contacted azure support but they…