hide global option from region variable lookup selet box when le group is data privacy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-14-2024 12:25 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-15-2024 04:07 AM
its still same .

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-15-2024 04:08 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-15-2024 04:18 AM
I can still see &colon in the latest screenshot, can you remove that and only keep ":".

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-15-2024 04:21 AM
javascript: if (current.variables.group == '3a773f22976c8e50028cfa871153af6d') {"sys_id!=634212eb97b14214028cfa871153af7a"; } else { "active=true"; }
tried,still visible

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-15-2024 04:28 AM - edited ‎10-15-2024 04:30 AM
I would suggest you simply call a Script and include in the ref qualifier like below.
Ref Qual -
javascript:new CustomGroupQualifier().getRefQual(current)
Script include -
var CustomGroupQualifier = Class.create();
CustomGroupQualifier.prototype = {
initialize: function() {},
getRefQual: function(current) {
if (current.variables.group == '3a773f22976c8e50028cfa871153af6d') {
return 'sys_id!=634212eb97b14214028cfa871153af7a';
} else {
return 'active=true';
}
},
type: 'CustomGroupQualifier'
};
Let me know if it helps.