Hello Friends,
Developers can now set the Title property on Error dialogs that are presented to the user to enrich issue description. On top of that, using the ErrorInfo object, developers can add up to three custom actions that will be displayed on the Error dialog to provide users with corrective actions. This can be achieved by calling the AddAction method on the ErrorInfo object, which can be passed to AL methods that support ErrorInfo such as Error, TestField, FieldError, and others.
The AddAction method accepts three parameters:
- Caption: The text string that appears as the caption of the action in the error UI.
- CodeunitID: The ID of the Codeunit to run when the action is initiated from the error UI. The codeunit should contain at least one global method to be called by the error action. The global method must have an ErrorInfo data type parameter for accepting the ErrorInfo object.
- Method Name: The name of the method in the Codeunit, which is specified by the CodeunitID parameter, that you want to run for the action.
One more useful ErrorInfo variable we can use for provide ERROR Message with actions
we can have multiple actions on error message itself to open relevant setup or master page
this will very convenient for user to Navigate to correct page for fixing any issue
No comments:
Post a Comment