Report Description REKH0004 SAP demo program shows how to do 2D, 3D, and 4D graphics. RGUGBR00 Substitution/Validation utility RHGEN00 Regen PD and PA inconsistencies RHGRENZ0 Program will delete any 1001 info types whose start date is after the delimit date. RHGRENZ1 Extend the end date on delimited records. RHGRENZ2 Delimit IT1001 only. RKCTSEAR Search source […]
Category Archives: SAP Tutorial
System Field Description ABCDE Constant: Alphabet (A,B,C,…) APPLI SAP applications BATCH Background active (X) BATZD Background SUBMIT: Daily BATZM Background SUBMIT: Monthly BATZO Background SUBMIT: Once BATZS Background SUBMIT: Immediately BATZW Background SUBMIT: Weekly BINPT Batch input active (X) BREP4 Background SUBMIT: Root name of request report BSPLD Background SUBMIT: List output to spool CALLD […]
ABAP / Data Dictionary – Table Description DD01L Domains DD02L/T/V SAP Tables (se11) DD03L/T Table Fields DD04L Data elements DD07L Values for the domains DD09L Technical settings of tables DD12L Secondary Indices TDEVC-T Packages TFDIR,TFTIT Function Module (se37) / FM short text ENLFDIR Add. Attributes: Function Modules TADIR-T Directory of Repository Objects TRDIR Programs / […]
ABAP / Tables / Data Dictionary – Transaction Description se11 Dictionary Definitions se14 Database utility se16 Data Browser (display only) se16n Modify: “&sap_edit” (uase16n) sd11 Data model sm30, sm31 SAP Table view maintenance se54 (SOBJ) Table / View Cluster se37 Function module editor se38 / se39 Program editor / split screen sa38 Program execution se80 […]
The APPEND statement adds a single line/row to an existing internal table. APPEND statement uses the work area to append the line/row information into the table.
Methods are internal procedures in a class that defines the behavior of an object. Methods can access all class attributes that allows to change the object data content.
INSERT statement adds a line/row to the internal table. The data requires to be filled in the table work-area and INSERT statement uses the same work area to insert the data into the internal table.
INDEX keyword is used to specify the table index position where the new row to be inserted.
Constructors are special methods that are called automatically while creating an object or instantiated (accessing the class components) first time.
Constructor gets triggered when an object is created.
COLLECT statement used for populating the internal tables. COLLECT is used while inserting lines into an internal table with unique standard key.
Events are functions that are triggered based on the result of a condition.
Events are used by Objects or classes to trigger event handler methods in other objects or classes.
Any number of event handler methods can be called when an event is triggered.
The link between a trigger and its handler method is decided dynamically at run-time.
