Built something you're proud of? Tell the story. A quick G2 review of App Engine or Build Agent helps other developers see what's possible on ServiceNow. Share your experience.

How to dotwalk the workflow activities

AnandKumar1
Tera Expert

Hi Team,

I have a requirement to remove a custom field business owner from Business application. So before removing that field i am checking that anywhere that field is used in all the scripting area. 

I am getting challanges to verify in workflow. I want to verify in Run script activity anywere this business application table is used or my filed business owner is used. 

i tried with wf_activity table but couldnt get the expected result. 

 

Thanks.

1 ACCEPTED SOLUTION

SanjivMeher
Mega Patron

This thread may help

https://www.servicenow.com/community/developer-forum/searching-the-script-field-s-of-workflow-activi...

Below is posted in the thread

1) In the Navigator filter box, type sys_variable_value.list <-- This takes you to the table to search
2) Click on the Filter wizard icon to create a custom filter
--- Table (document) is wf_activity AND
--- Variable.Column Name contains script' OR
------ Variable.Type.Name contains 'script' AND
--- Value contains [whatever you are searching for]


Please mark this response as correct or helpful if it assisted you with your question.

View solution in original post

2 REPLIES 2

SanjivMeher
Mega Patron

This thread may help

https://www.servicenow.com/community/developer-forum/searching-the-script-field-s-of-workflow-activi...

Below is posted in the thread

1) In the Navigator filter box, type sys_variable_value.list <-- This takes you to the table to search
2) Click on the Filter wizard icon to create a custom filter
--- Table (document) is wf_activity AND
--- Variable.Column Name contains script' OR
------ Variable.Type.Name contains 'script' AND
--- Value contains [whatever you are searching for]


Please mark this response as correct or helpful if it assisted you with your question.

Hi Sanjiv,

Thanks for your reply. I tried with the way which you suggested. It works 🙂