What is constrained picklist? Where you will drop the constraints? What is originating BC? What is pick BC?Īns - It can be done using Pickmaps in the field property of BC field.ģ. TheApplication().RaiseErrorText(Clib.rsprintf('Something badĢ. In this example, the script continues executing after the error message is displayed: The following example demonstrates the general form of the try statement with the catch clause. The catch statement is used to process the exceptions that may occur in the manner you specify in the exception_handling_block. When you want to trap potential errors generated by a block of code, place that code in a try statement, and follow the try statement with a catch statement. To raise an exception, use the throw statement. Ans - The catch clause is used to handle the exception.