- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2023 09:24 PM - edited 06-05-2023 09:24 PM
Hello, in a client script ,im using the below line, where the sys_id is stored in sys_properties table
g_form.hideRelatedList('REL:sys_id');
How can i bring that value and append in the line instead of using sys_id.
Any suggestions.Thank you
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2023 10:14 PM
Hi @servicenow14710 ,
To bring the value stored in the sys_properties table and append it to the line instead of using the string "sys_id," you need to retrieve the value from the database and substitute it into the script. Here's an example
// Assuming you have a variable 'propertyName' that contains the name of the property storing the sys_id value
var sysId = gs.getProperty(propertyName);
if (sysId) {
// Use the retrieved sys_id value in your script
g_form.hideRelatedList('REL:' + sysId);
} else {
// Handle the case when the property is not found or doesn't have a value
gs.info("Property not found or value is empty");
}
Regards,
Shravan
Please mark this as helpful and correct answer, if this helps you
Shravan
Please mark this as helpful and correct answer, if this helps you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2023 10:19 PM - edited 06-05-2023 10:20 PM
Hello @Sai Shravan Thanks for the reply, so since this line is used in Client script.
g_form.hideRelatedList('REL:sys_id');
i can use scratchpad from display business rule and use that value
var myProperty = g_scratchpad.my_property
so as per you the line should be
g_form.hideRelatedList('REL:'+myProperty);
or
g_form.hideRelatedList('REL:myProperty');
im confused as how to append this.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2023 10:19 PM - edited 06-05-2023 10:20 PM
Hello @Sai Shravan Thanks for the reply, so since this line is used in Client script.
g_form.hideRelatedList('REL:sys_id');
i can use scratchpad from display business rule and use that value
var myProperty = g_scratchpad.my_property
so as per you the line should be
g_form.hideRelatedList('REL:'+myProperty);
or
g_form.hideRelatedList('REL:myProperty');
im confused as how to append this.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2023 10:24 PM
Hi @servicenow14710,
Take a look ta one of my related article. It will help you.
System Properties & it's Usage
Thanks,
Sagar Pagar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2023 12:30 AM
For client script on change,on submit , Can i use the display business rule without table name to get sysproperties value instead of using sys id .Any suggestions. @Sagar Pagar @Manmohan K @Sai Shravan . Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2023 12:33 AM
Hi @servicenow14710,
With out table name it is not possible in display business rule.
Thanks,
Sagar Pagar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2023 12:33 AM
You can use Display Business rule in any type of client script to fetch any value from server side