Run workflow background process from backend

Run workflow background process from back end

Frequently you will have a requirement to run the workflow background program, so it is not necessary to login to application (system administrator) and run it. You can even run the same from backend.

Here is the query to submit the program from backend.
The input parameters are shown in the above screen shot

begin 
wf_engine.Background (itemtype=>'OEOH', -- Order header
                      minthreshold => NULL,
                      maxthreshold => NULL,
                      process_deferred => TRUE,
                      process_timeout=> TRUE,
                      process_stuck => NULL);
END;