- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2022 11:50 AM
Hi,
I am wanting to hide certain states on the process flow based on the Change Model. For example, here in our company we have information changes, that does not require approvals. I want to hide the Assess, Authorize, Scheduled, and Implementation states on the process flow.
I did find an old example of this, 10 years ago example. It said to add a new field with a type set as a condition to the sys_process_flow table, but there is already a condition field there.
It seems like the ui macro is where I would need to make that condition fit, but I am unsure of where in ui macro script would I incorporate the condition.
Any help would be appreciated.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2022 04:15 PM
I found the answer. I ended up creating a UI Policy and making sure that the Isolate Script was set to false, then I added the following to the script and it worked.
$j("a:contains('Assess')").hide();
$j("a:contains('Authorize')").hide();
$j("a:contains('Scheduled')").hide();
$j("a:contains('Implement')").hide();

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2022 11:56 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2022 11:58 AM
Hi
I did add conditions to the process flow configuration, but it did not hide it on the form.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2022 11:58 AM
Haven't tried but look for link & comments from Ajay

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2022 12:04 PM