How do you handle passing data to a scheduled scri...
# suitescript
i
How do you handle passing data to a scheduled script from a suitlet? I have a suitelet that shows some list data, the user can check the row he wants and I added a button that calls a clietn script that does some manipulation of the data selected by the user and downloads a file, now what I want is to edit those records the user checked, set some fields and send some emails, but on a scheduled script, what I have is every row checked I get the id of the records, store it on an aray, and then I redirect a suitelet with the
window.location
and I send the ids of the array, on the suitelet I check on the GET if the url has some values and call a scheduled script, but as you can imagine, the url is full of the ids, I dont want to seend this ids on the url, how can I do that?