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 […]
Category Archives: SAP ABAP
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.
Attributes are internal data fields within a class that can be declared with any ABAP data type such as C, I, F and N. The object state is determined by its attributes contents.
Decision control statements are used to execute block of statements only when certain conditions are met.
IF statement is a simple control statement that are used to verify one or more logical expressions/conditions. IF statement consists of a one or more logical expressions/Conditions followed by one or more statements.
IF statement consists of a one or more logical expressions/Conditions followed by one or more statements. IF statement followed by ELSE contains another set of statements.
