Hi Team, I need to call system property having integer value in business rule.

Deepshi1
Tera Contributor

Can anyone help me with the same.

I have an integer property having some value and need to call that in BR and if the value is greater then 2 the task should get created in the required table.

3 ACCEPTED SOLUTIONS

piyushsain
Tera Guru
Tera Guru

Hi,

You can call the property by gs.getProperty('Property_name') and save it in a variable

If my answer has helped with your question, please mark my answer as accepted solution and give a thumb up.
Regards,
Piyush Sain

View solution in original post

Sandeep Rajput
Tera Patron
Tera Patron

@Deepshi1 please use gs.getProperty('property name'); to fetch the value of a system property in business rule.

 

 

View solution in original post

var systemProp = parseInt(gs.getProperty('some property name'));

if(systemProp>2){
//do something
}
else{
//Do something else.
}

View solution in original post

5 REPLIES 5

Dr Atul G- LNG
Tera Patron
Tera Patron

Hi @Deepshi1 

 

Use --> gs.getProperty('property name');

*************************************************************************************************************
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.

Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]

****************************************************************************************************************