- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-19-2024 03:01 PM
I have a requirement to not allow a submitter of a catalog item to select themselves as approver in a variety of forms(all utilizing the same variable set with the Approver reference field). My thought was to use a reference qualifier but it doens't seem like I can use a simple qualifier in this case. Can anyone assist with a best practice here?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-19-2024 04:34 PM
You can achieve the desired result by using the following simple reference qualifier:
Sys ID – is not – javascript:gs.getUserID()
On a side note, it is usually not a good idea to let users select an approver. A leading practice is to make your approval process data-driven whereby the system determines the appropriate approver based on the available foundation data.
Blog: https://sys.properties | Telegram: https://t.me/sys_properties | LinkedIn: https://www.linkedin.com/in/slava-savitsky/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-19-2024 04:34 PM
You can achieve the desired result by using the following simple reference qualifier:
Sys ID – is not – javascript:gs.getUserID()
On a side note, it is usually not a good idea to let users select an approver. A leading practice is to make your approval process data-driven whereby the system determines the appropriate approver based on the available foundation data.
Blog: https://sys.properties | Telegram: https://t.me/sys_properties | LinkedIn: https://www.linkedin.com/in/slava-savitsky/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-20-2024 08:32 AM
Thanks I knew it had to be a simple one liner somewhere. I agree but we're working with incomplete/bad data so once there is a good source of truth we can adopt those practices.