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

global functions to use in workflows

Avatar

Level 4

Hi Team, 

 

Is there a possibility so that i can store a global function in one place and call it from anywhere in Adobe workflow javascript. 

 

i have found there is a node under Administration>Javascript nodes. i have created a new namespace : "cust:new" and written a function in the javascript file -XXX() and i have called this function in one of the workflow javascript and it throws an saying "XXX()" is not defined. 

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi,

 

Globals have been long considered undesirable due to the complexity and risk they create.

E.g. you may want to create a function called onStart() to run at the start of a workflow, except that's taken by the software's event handler and would collide and create unexpected behavior.

That said, just loadLibrary() your file and it'll install whatever's in the global namespace there to the entire workflow. This is best done at the workflow level, i.e. Properties dialog, to make it centralized and predictable.

 

Thanks,

-Jon

View solution in original post

1 Reply

Avatar

Correct answer by
Community Advisor

Hi,

 

Globals have been long considered undesirable due to the complexity and risk they create.

E.g. you may want to create a function called onStart() to run at the start of a workflow, except that's taken by the software's event handler and would collide and create unexpected behavior.

That said, just loadLibrary() your file and it'll install whatever's in the global namespace there to the entire workflow. This is best done at the workflow level, i.e. Properties dialog, to make it centralized and predictable.

 

Thanks,

-Jon