The “Pause action” is used to temporarily halt the execution of a workflow at a specific point. This allows the workflow to wait for certain conditions to be met, such as manual intervention, external input, or a predefined amount of time, before continuing with the next steps. It is useful when a delay or user interaction is required in the workflow process.
The Variables tab defines which variables are updated during the execution of the action.
The Execution Log tab is populated after the action has been executed. Double-click a row to view the detailed execution log.
begin
if DayOfWeek(Now)=3 then
begin
Result:='00:00:01';
end
else
begin
Result:='00:00:20';
end;
end;
import datetime;
if datetime.datetime.today().weekday()==0:
Result.Value='00:00:01'
else:
Result.Value='00:00:23'For more technologies supported by our ETL Software see Advanced ETL Processor Versions
Confused? Ask question on our ETL Forum