Refresh my memory again please... If I have an `Us...
# suitescript
a
Refresh my memory again please... If I have an
User Event
which create a
Custom Record
and that triggers a
Work Flow
, the
UE
would have to wait for the
Work Flow
to finish?
j
If you start the workflow with
N/workflow.initiate
it will wait for the workflow to finish (synchronous). If you start the workflow using
N/task.create
it will not wait for the workflow to finish (asynchronous).
👍 1