- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-07-2022 05:28 AM
Hi Community,
I would like to call a system property in a ACL where i am using the below code:
var gdt = new GlideDateTime(close_date);
gdt.addSeconds(250);
Here instead of giving gdt.addSeconds(250) I want to create a system property and then call it here.
Can someone help?
Solved! Go to Solution.
- Labels:
-
Scripting and Coding

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-07-2022 05:31 AM
Hello Anil,
You can mention in like this.
var seconds = gs.getProperty('<System Property name>');
gdt.addSeconds(seconds);
Please Mark ✅ Correct/helpful, if applicable, Thanks!!
Regards
Sulabh Garg
Regards
Sulabh Garg

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-07-2022 05:31 AM
Hello Anil,
You can mention in like this.
var seconds = gs.getProperty('<System Property name>');
gdt.addSeconds(seconds);
Please Mark ✅ Correct/helpful, if applicable, Thanks!!
Regards
Sulabh Garg
Regards
Sulabh Garg

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-07-2022 10:00 PM
Hi Anil,
Please mark the comment as helpful/correct if you were able to solve the concern.
Regards
Sulabh Garg
Regards
Sulabh Garg

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-07-2022 05:40 AM
Hello Anil,
Paste this in your ACL by declaring a variable and pass
gs.getProperty('property name');
Regards,
Musab