- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-17-2019 11:07 PM
Hi All,
I want to display error when he is entering the value more than 10 in the field. Through client script it is working fine but using business rule i want to show error message in the portal.
IP Range is the field where i am actually trying for this.
Could you please help me on this,
Thank You,
Sai.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-17-2019 11:20 PM
sample code catalog client script:
var ab = g_form.getValue('ip_range'); // make sure the variable name
if(ab > 10 ){
g_form.addErrorMessage('This is an error');
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-18-2019 01:43 AM
Hi Harsha,
Its working with g_form.addErrorMessage("Please enter a value in numbers.");
Thank You,
Sai.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-18-2019 01:45 AM
addErrorMessage() will not work on portal.
Thats why i said use showFieldMsg() instead of addErrorMessage()
https://hi.service-now.com/kb_view.do?sysparm_article=KB0713157

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-20-2019 01:22 AM
any update on this thread.
if i answered your query , kindly mark the answer correct and close this thread.