Page Triggers in Microsoft Dynamics 365 Business Central / Navision with Example.
Hello Readers, Today I will explain to you the concept of page triggers in the Microsoft Dynamics 365 Busines Central. So let's start. What is Page Trigger? Ans: Certain predefined events that occur to a page can cause the system to execute a user-defined function. Triggers activate a method when a certain event occurs. There are different types of triggers available in business central. I will explain you one by one with examples. trigger OnInit() begin end; This Trigger initializes the user define variable on the page. Example of OnInit Trigger. Af First I have created a table "SARAB Test Table". Please check the code below for table creation table 59100 "SARAB Test Table" { DataClassification = CustomerContent; fields { field( 1 ; "Entry No."; Integer) ...