- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-26-2025 12:35 PM
Hello, I have created a UI Action that should only show for certain users. I have added a condition shown below. However if I impersonate a user who cannot create a record on the table, the button still shows. Is there a way to hide this button? it is the only button showing on the form
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-26-2025 01:21 PM
Hi @DreDay3000,
@Vishal Jaswal was absolutely on the money re leveraging parenthesis. Another condition you may want to consider based on your feedback is "&& current.canCreate()".
This essentially checks if the user has access to create a record in the related table (or passes can create ACL).
To help others (and for me to gain recognition for my efforts), please mark this response correct by clicking on Accept as Solution and/or Kudos.
Thanks, Robbie
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-26-2025 02:02 PM
thanks @Robbie and @Vishal Jaswal. Your help is greatly appreciated!