How many Debug Groovy Script Methods are available in Application Composer
----====================================================================== ******* How many Debug Groovy Script Methods are available in Application Composer ******* --====================================================================== 1. Runtime messaging 2. Put Oracle JBO validation in Groovy Script Palet ex:- -1.--Simple Validation Message Script:--- throw new oracle.jbo.ValidationException("You don't have sufficient privileges to update the record.") // You can replace the custom message here. and you can make it dynamic with variables or fields. -2.--Multi-Line Validation Messages with less space:--- throw new oracle.jbo.ValidationException( "<html><body> <p>The Errors are listed below: <br> You have insufficient priviliges <br> You have entered invalid value in Status filed </p> </body></html>") -3.--Multi-Line Validation Messages with more space:--- throw new oracle.jbo.ValidationException(" <