How to check duplicate custom workflow activities versionSummaryHow to check duplicate custom workflow activities version?InstructionsYou can check the workflow activity version from table "wf_versionable". You can search the workflow activity at the field "Element Definition" https://<INSTANCE>/wf_versionable_list.do?sysparm_query=&sysparm_view= For example, in following screenshot, I'm looking for workflow activity "(VF) Add Users to Shared Mailbox". You can find different version (under 'Version' field). You can hover over to the "Element Definition" and check the sys_id of the workflow activity. You can use the sys_id of the workflow activity and compare with the sys_id when you open the workflow activity via workflow editor / Activity Designer. Related LinksThere should be only one version that has Published=true. If for some reason the workflow activity has 2 records with Published=true, we can set the older version to 'false' as below: var gr = new GlideRecord('wf_versionable'); gr.get('sysid here'); gr.published='false'; gr.update();