Break Rules
This can be considered as the debugger setup. From the Debugger page, click on the Break Rules icon found on the ribbon bar. The Debugger Break Rules page opens, as shown in the following screenshot:
In Dynamics NAV 2016, you can find three basic options on the debugger feature:
- Break On Error: If the debugger is set to Break On Error, it breaks execution both on errors that are handled in code and on unhandled errors. By default, the debugger is set to Break On Error.
- Break On Record Changes: If the debugger is set to Break On Record Changes, it breaks before creating, modifying, or deleting a record. Therefore, the debugger stops on any of the following statements:
INSERT
,MODIFY
,MODIFYALL
,DELETE
, andDELETEALL
. By default, the debugger is not set to Break On Record Changes. - Skip Codeunit 1: Many of the triggers in codeunit 1 Application Management are not important for debugging a business scenario. This is due to the fact that they are seldom important for debugging...