Posts

Showing posts with the label How to create transaction code

ABAP TRANSACTION CODE AND EVENTS

Image
Module Objectives •Create transaction codes to load custom programs •Utilize ABAP Events to manage program processing Creating a Custom Transaction Code Creating a Custom Transaction Code we will click on ABAP Repository object and search for Transaction and write the object name. Creating A transaction Code  we will enter the transaction code and select the Start object type and enter the transection text and program name ABAP Events Events are declared through the event keyword Events are triggered when the program encounters a particular scenario (i.e. program is loaded, execution after selection screen, etc.) Events are terminated when any of these scenarios are met           -Declaration of another event           -Declaration of a subroutine or local method           -End of source code ABAP Event Keywords ABAP Events ABAP Events LOAD-OF-PROGRAM •Occurs prior to the loading of the selection screen •Inf...