[ABAP] Keywords Flashcards
ABAP KEYWORDS
ABAP Statements.
CALLING Keywords
used to call re-usable modules that are already defined.
PERFROM to CALL FORM - ENDFORM
CALL FUNCTION to CALL FUNCTION - ENDFUNCTION
MODULE to CALL MODULE - ENDMODULE
CONTROLLING Keywords
used to control the default flow of a program execution. (IF, ELSE, ENDIF)
DECLARATIVE Keywords
used to declare the variables in SAP ABAP. (TYPES, DATA, TABLES, CONSTANTS. )
DEFINITION Keywords
used to define re-usable modules (blocks).
FORM - ENDFORM
FUNCTION - ENDFUNCTION
MODULE - ENDMODULE
DATABASE Keywords
used to work with database operations. SELECT INSERT UPDATE DELETE
EVENT Keywords
used define event blocks.
TOP-OF-PAGE : Used to print the same heading on top of every page
END-OF-PAGE : Used to print the same footer on every page of output list.
OPERATIONAL Keywords
used to operate the data with declarative statements.
WRITE
MOVE
ADD