Expand my Community achievements bar.

Announcing the launch of new sub-community for Campaign Web UI to cater specifically to the needs of Campaign Web UI users!
SOLVED

cleanupPausedWorkflows

Avatar

Level 3

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

1 Accepted Solution

Avatar

Correct answer by
Level 3

Hi Pablo,

Actually I have figured it out lately, this variable was declared in workflow properties as below

<variables checkDelay="7" checkDelay-type="number"/>

Regards,

Ankit

View solution in original post

2 Replies

Avatar

Level 10

Hi Ankit,

Great question! I'm unsure about this one. I suppose it counts how long the workflow has been delayed/paused.

Is this impeding your work?

All the best,

Pablo

Avatar

Correct answer by
Level 3

Hi Pablo,

Actually I have figured it out lately, this variable was declared in workflow properties as below

<variables checkDelay="7" checkDelay-type="number"/>

Regards,

Ankit