User Activity
08-13-2025
Hi,
I have a doubt about query_range ACLs in code. How can we determine whether we should check canRead() or query_range?
Suppose a table has both read and query_range ACLs. Now, in code, if we have something like:
var gr = new GlideRecord...
I have the following ACL script on the sectest table(inside 1st row acl in above image for the read operation):
var user = gs.getUser(); if (user.hasRole("sn_cmp.cloud_service_designer") || current.sys_created_by == gs.getUserName() || user.ha...
Hi,
Below script worked but problem is it's returning child+parent level fields, is there any way to avoid parent level fields? basically dont want to run loop for parent table fields
(function process(request, response) {
var result = {
...
07-07-2025
I have field-level ACLs defined on a table, and I noticed entries like tablename.* exist for read and write operations. Initially, I used GlideRecordSecure in my script to rely on built-in ACL enforcement.
However, I observed that GlideRecordSecure...