- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2023 05:40 AM - edited 07-24-2023 05:45 AM
Dear All,
I would like to request for a help on an issue wherein after Utah upgrade, we as admins are not able to edit or create properties. We are trying to enable the email inbound and outbound properties but it is greyed out. We have not faced this issue in San Diego version.
I thought if background script will help and wrote the below script to check if I am able to fetch the value
[Domain Paths] Query against table sys_script restricted by domain values [SNOW[864190b96970600010b88f3cdb9a136e], global]
Request to kindly help.
Thanks
Sourabh Saha
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2023 05:53 AM
Hi @Sourabh1 ,
Run the below script in your Background script.
var gr = new GlideRecord('sys_properties');
gr.addActiveQuery();
gr.addQuery('name','glide.email.smtp.active');
gr.query();
if (gr.next()) {
gs.print(gr.value);
gr.value = 'true'
gr.update();
gs.print(gr.value);
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2023 05:57 AM
Hello @Sourabh1
Greetings!
Check the ACLs on properties table and check if Admin override is enabled or not.
please mark the answer as helpful and correct if your query is resolved.
Kind Regards,
Ravi Chandra
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2024 11:07 AM
Make sure your Application scope is set to Global.
Thanks.