- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Something must have change, and I probably need to go to HI, but I'll start here first.
I have a catalog item that has a Reference lookup to specific Application Templates require in User Setup.
On the custom table, I've added the ACL for READ like i've done in the past as:
Name - customtable
Operation - read
Decision - Allow If
Advanced - True
Role - blank
Security Attribute Condition - Local
Data Condition - blank
Advanced Condition
answer = gs.getSession().isLoggedIn();
if (!answer) {
answer = gs.getProperty('glide.security.allow_unauth_roleless_acl', false);
}
We a user tries to select an option - they are getting security constrain error.
We've recently upgraded to Zurich, and when I enable Debug - Security
The popup box shows the debug entries, but doesn't allow me to scroll through the list.
If i allow the Security Debug popup to be open, then the Catalog Reference popup doesn't show.
Has anyone experienced this? What other ACL am I missing.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
@Tanushree Maiti thanks for the help. Finally got the Debug Popup window to finally stay open. Geez...
Turns out that since switching to Catalog Builder, we needed to add read to that table and apparently also needed to add tablename.* read acl as well.
It's working now.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago - last edited 3 weeks ago
Hi @EricG2 ,
Can you elevate your privilege as security admin and modify your Read ACL with this ACL script.
Try Once.
- Type: record
- Operation: read
- Name: u_centrix_page_template
ACL script :
var isVisible = gs.getProperty('glide.security.allow_unauth_roleless_acl');
if (isVisible == 'true') { answer = true; } else { answer = false; }
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
@Tanushree Maiti thanks for the help. Finally got the Debug Popup window to finally stay open. Geez...
Turns out that since switching to Catalog Builder, we needed to add read to that table and apparently also needed to add tablename.* read acl as well.
It's working now.
