Debugger.BreakOnError(Boolean) Method

Version: Available or changed with runtime version 1.0 until version 4.0 where it was deprecated.

Sets whether the debugger breaks on errors.

Syntax

[Ok := ]  Debugger.BreakOnError(Ok: Boolean)

Parameters

Ok
 Type: Boolean
Specifies whether the debugger breaks on errors.

Return Value

[Optional] Ok
 Type: Boolean
true if the operation was successful; otherwise false. If you omit this optional return value and the operation does not execute successfully, a runtime error will occur.

If you omit this optional return value and if the break is not set successfully, then a run-time error occurs. If you include the return value, then you must handle any errors.

Remarks

The debugger must be attached to a session when you run the BreakOnError method.

Example

This example shows how to implement the code for an action on a page that sets the break on error setting to true. You can use this code example in the OnAction trigger of that action. This code example requires that you create a Boolean variable named Value.

Value := true;  
Debugger.BreakOnError(Value);  

See Also

Debugger Data Type
Get Started with AL
Developing Extensions