|
|
|
|
|
ExecuteDelayedProcedure (Function) In french: ExécuteProcédureDifférée Runs a delayed procedure (in the WEBDEV Application Server). Note: This function can only be used to execute deferred procedures associated with WEBDEV deferred tasks. It cannot be used to run scheduled WEBDEV tasks.
ExecuteDelayedProcedure(CalcTO, 0)
Syntax
ExecuteDelayedProcedure(<WLanguage procedure> [, <Parameter 1> [... [, <Parameter N>]]])
<WLanguage procedure>: Procedure name Name of WLanguage procedure to run. This procedure must have been defined as delayed procedure in the code editor. For more details, see Delayed procedures. <Parameter 1>: Type of parameter First parameter associated with the procedure. <Parameter N>: Type of parameter Nth parameter associated with the procedure. Remarks - The execution of the procedure may fail if the procedure is already run in background task.
- If your project uses pre-launched sessions, this function must not be used in the project initialization event. This function must be used in the "Initialization in pre-launched session mode" event.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|