Bulk update into workflow | Community
Skip to main content
Level 4
July 31, 2020
Solved

Bulk update into workflow

  • July 31, 2020
  • 1 reply
  • 1288 views

Hi Team, 

 

i have workflow like the below : 

 

 

i have to add a javascript node after the query activity and change the label of list according to the return function : 

javascript node has the below : 

 

function xx()

{

...

return string;

}

 

list update node : 

label : <%=xx()%>

 

 

 

 

there are some 100's of workflow like this. Can i update the labels in list as well as add javascript in workflow in bulk? 

currently i am opening each workflow and updating these two things. 

 

 

 

 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Jonathon_wodnicki

Hi,

 

Yes, workflow's data clob can be altered with js and/or sql.

A much safer and easier approach is to export the workflows to xml, open them in vs code or notepad++, find/replace there, then re-import.

 

Thanks,

-Jon

1 reply

Jonathon_wodnicki
Community Advisor
Jonathon_wodnickiCommunity AdvisorAccepted solution
Community Advisor
August 1, 2020

Hi,

 

Yes, workflow's data clob can be altered with js and/or sql.

A much safer and easier approach is to export the workflows to xml, open them in vs code or notepad++, find/replace there, then re-import.

 

Thanks,

-Jon