- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2015 11:26 PM
Hello
I'm currently working on a business rule to generate a record within my application once a followup threshold has been met. I've already setup a system property to hold the value of that threshold but I'm having issue applying this threshold on the condition field that evaluates before it decides to run the business rule script.
Currently the condition is current.overall<javascript:gs.getProperty("x_16205_pulsecheck.followup_theshold"); but the syntax check isn't liking how I currently have it setup. I was wondering if I have made a mistake, is gs.getProperty not callable within the condition field?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2015 12:05 AM
There is no need to use javascript: in here . Following should work in BR Condition
current.overall<gs.getProperty("x_16205_pulsecheck.followup_theshold")
Also make sure that property is of integer type.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2015 12:05 AM
There is no need to use javascript: in here . Following should work in BR Condition
current.overall<gs.getProperty("x_16205_pulsecheck.followup_theshold")
Also make sure that property is of integer type.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2015 04:19 PM
Thank you Singh,
I tried it like that earlier but my mistake is I have the property as a string.