- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-08-2022 12:12 AM
Hi,
I'm building a service request to allow requester to manual select approver from user table. However I want to restrict requester to select ownself as approver. Any suggestion how can I build it? Thanks.
Solved! Go to Solution.
- Labels:
-
Service Catalog

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-08-2022 12:20 AM
Hi,
You can add following reference qualifier to your approver variable. Once this is added current user will not be listed in the variable
javascript:"sys_id!=" + gs.getUserID();
Palani
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-08-2022 01:24 AM
I've used Reference qualifier to eliminate requester name from selection, thanks.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-08-2022 12:20 AM
Hi,
You can add following reference qualifier to your approver variable. Once this is added current user will not be listed in the variable
javascript:"sys_id!=" + gs.getUserID();
Palani