how to hide Request approval button for particular change request
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2023 04:03 AM
we have created standard change we need to hide request approval button only for that change request. i have tried using script in UI policy but its not working.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2023 05:08 AM
What is information standard change?
Type = Standard right?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2023 05:12 AM
@Anurag Tripathi yes type is standard change if short description contains informational standard change then request approval button need to be hide.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2023 06:13 AM - edited 07-18-2023 06:14 AM
So append this in the condition
(current.type!='standard' && current.short_description.toString().IndexOf('informational standard change') >-1)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2023 04:51 AM
@Anurag Tripathi i have added in the condition but request approval button is still showing in the form.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2023 05:55 AM
Can you show the form and the condition?