Ads

ABAP Programming Statements

ABAP Programming Statements

ABAP Program is a Collection of statements and there are different types of Programming statements using in SAP ABAP Language. Here we are learning the different types of Statements in ABAP.

Different types of statements in ABAP Program

Declarative Statements


These statements define data types or declare data objects which are used by the other statements in a program or routine.

TYPES, DATA, TABLES


Modularization Statements


These statements define the processing blocks in an ABAP program.
METHOD ... ENDMETHOD, FUNCTION ... ENDFUNCTION, MODULE ... ENDMODULE.

Event keywords

AT SELECTION SCREEN, START-OF-SELECTION, AT USER-COMMAND.

Control Statements


You use these statements to control the flow of an ABAP program within a processing block according to certain conditions.


IF, WHILE, CASE


Call Statements


You use these statements to call processing blocks that you have already defined using modularization statements.

CALL METHOD, CALL TRANSACTION, SUBMIT, LEAVE TO

Operational Statements


These keywords process the data that you have defined using declarative statements.




Comments