Hi all,
I am looking at the OOTB workflow (cleanupPausedWorkflows) and when i look at the last Java Script activity which is Notify Supervisors of Paused workflow, the var is defined as below.
In this does anyone has any idea what does instance.vars.checkDelay represents here and from where this checkDelay value is coming ?
var workflows = cnx.query("(SELECT O.iOperatorId, W.iId, W.sInternalName, W.sLabel, (4-W.iUnlockedCount)*" + instance.vars.checkDelay + ", W.iWorkflowEventLastProcessing FROM " + vars.tableName + " W JOIN XtkWorkflow Wk ON (W.iId = Wk.iWorkflowId)" +
" JOIN XtkOperatorGroup G ON (G.iGroupId = Wk.iSupervisorId)" +
" JOIN XtkOperator O ON (O.iType = 0 AND G.iOperatorId = O.iOperatorId))" +
" UNION " +
"(SELECT O.iOperatorId, W.iId, W.sInternalName, W.sLabel, (4-W.iUnlockedCount)*" + instance.vars.checkDelay + ", W.iWorkflowEventLastProcessing FROM " + vars.tableName + " W JOIN XtkWorkflow Wk ON (W.iId = Wk.iWorkflowId)" +
" JOIN XtkOperator O ON (O.iType = 0 AND (O.iOperatorId = Wk.iCreatedById OR O.iOperatorId = Wk.iModifiedById)))" +
" ORDER BY 1, 5")
Regards,
Ankit