- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2023 07:50 AM
I'm working on an application where I have a system property for how many days a user is allowed to request. I want to add the system property value from this other application into the default value in another table.
I tried using the javascript: method to add the property value using gs.getProperty but no value is showing up?
I'm assuming that I'm not understanding something. Any help?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2023 10:16 AM
Hi @Ike-Either ,
You can call system property like
var systemPropertyValue = gs.getProperty('your.system.property.name');
current.your_field_name = systemPropertyValue;
Thanks,
Anand
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2023 10:16 AM
Hi @Ike-Either ,
You can call system property like
var systemPropertyValue = gs.getProperty('your.system.property.name');
current.your_field_name = systemPropertyValue;
Thanks,
Anand

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2023 12:02 PM
@Ike-Either Did you try adding following in the default tab of your field.
javascript: gs.getProperty('<property name>');
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2024 05:11 AM - edited 08-09-2024 05:14 AM
javascript: gs.getProperty('<property name>');
Is a good solution, thanks 👍
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2023 11:08 PM
I decided to use calculations to get the property to display in the field. But I will accept Anand Kumar as the solution as it's similar to what I did in the calculation to get it to display.