Hi All, Recap - "Till Now We Have Discussed the Concept of Events and Subscription With an Example". If you are missing the Story, Refer Table of Index For Events & Subscriptions . Let's start it with What Microsoft Says About Events, Publisher and Subscribers. > An event is the declaration of the occurrence or change in the application. An event is declared by a C/AL function, which is referred to as an event publisher function. An event publisher function is comprised of a signature only and does not execute any code. > A publisher is the object that contains event publisher function that declares the event. The publisher exposes an event in the application to subscribers, essentially providing them with a hook-up point in the application. Publishing an event does not actually do anything in the application apart from making the event available for subscription. > A subscriber listens for and handles a published event. A subscriber is a C/AL ...