I want to use a client script to trigger a function in a suitelet to do some background work (work that the user doesn't have to wait for)
I was under the impression that if I just write the code that does that background work after
context.reponse.write
that it would give the user the response and then run the wanted code, but after trying it, it seems I was mistaken.
Is there any way to accomplish this? (I don't want to use a map reduce.)