[ABAP] Keywords Flashcards

1
Q

ABAP KEYWORDS

A

ABAP Statements.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

CALLING Keywords

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

CONTROLLING Keywords

A

used to control the default flow of a program execution. (IF, ELSE, ENDIF)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

DECLARATIVE Keywords

A

used to declare the variables in SAP ABAP. (TYPES, DATA, TABLES, CONSTANTS. )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

DEFINITION Keywords

A

used to define re-usable modules (blocks).
FORM - ENDFORM
FUNCTION - ENDFUNCTION
MODULE - ENDMODULE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

DATABASE Keywords

A
used to work with database operations.
SELECT 
INSERT 
UPDATE 
DELETE
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

EVENT Keywords

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

OPERATIONAL Keywords

A

used to operate the data with declarative statements.
WRITE
MOVE
ADD

How well did you know this?
1
Not at all
2
3
4
5
Perfectly