- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-25-2022 12:00 AM
As shown in above pic, user should not be able to certify empty elements as marked in yellow. There should be some error when user tries to certify these empty elements.
Please help
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-31-2022 03:24 AM
Business Rule which you need to set up will look like below:
BR Details;
Table: Certification Element:
Condition: State Changes to Certified
Script :
(function executeRule(current, previous /*null when async*/) {
// Add your code here
if(current.certified_value == ''){
gs.addErrorMessage('Empty Field Values cannot be certified');
current.setAbortAction(true);
}
})(current, previous);
Hope this helps. Please mark the answer as correct/helpful based on impact.
Regards,
Shloke
Regards,
Shloke
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-31-2022 06:25 AM
HI all and Sachin ,i have same requirement if you were able to achieve the error mesg when user trying to certify with empty fields kindly help me out im struggling with this
thank you all
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-01-2022 05:47 AM
Hi,
You can find under the humberger menu from the top left, navigate to table.
Thanks,
Bill