ABAP Keyword Documentation → ABAP − Reference → Program Flow Logic → Control Structures → Branches
CASE
Other versions: 7.31 | 7.40 | 7.54
Syntax
CASE operand.
[WHEN operand1 [OR operand2 [OR operand3 [...]]].
[statement_block1]]
...
[WHEN OTHERS.
[statement_blockn]]
ENDCASE.
Effect
Case Distinction These statements define a control structure that can contain multiple statement blocks
statement_block1
, ..., statement_blockn
, of which no more than one is executed depending on the value of the operand operand
.
Starting with the first WHEN
statement, the content of the operand in
operand is compared with the content of one of the operands operand1
,
operand2
, ... from the top down. The statement block is executed after the
first identical instance is found. If no matches are found, the statement block is executed after the statement WHEN OTHERS
.
-
The operand
operand
afterCASE
is a general expression position. -
The operands
operand1
,operand2
, ... afterWHEN
are extended functional operand positions in which, however, table expressions cannot be specified. This property of operand positions is obsolete and should no longer be used.
If the end of the executed statement block is reached or no statement block is executed, processing continues after ENDCASE
.
The contents are compared as illustrated in the following logical expression:
operand = operand1 [OR operand = operand2
[OR operand = operand3 [...]]]
The comparison rules for comparisons between any operands apply when this comparison is made, depending on the data types of the operands involved.
Notes
-
For
operand
, the current value is used in every comparison. This may differ from the starting value ifoperand
is a variable that is changed in a functional method specified after aWHEN
statement. -
A
CASE
control structure is somewhat faster than a semantically equivalentIF
control structure. -
Functional methods and certain built-in functions can be specified after
WHEN
, however this should be avoided. Constant values, for example, should be specified in the operand positions afterWHEN
. -
In a special case, a control structure introduced using
CASE TYPE OF
makes it possible for the type of object reference variables to be checked. -
The conditional operator
SWITCH
can also be used to make case distinctions in operand positions. -
A statement cannot be placed between the statement
CASE
and the first statementWHEN
. In classes, this produces a syntax error; outside classes, obsolete syntax of this type produces a syntax warning.
Example
Branches the program flow depending on the function code in system field sy-ucomm
.
CASE sy-ucomm.
WHEN 'BACK'.
LEAVE TO SCREEN 100.
WHEN 'CANCEL'.
LEAVE SCREEN.
WHEN 'EXIT'.
LEAVE PROGRAM.
WHEN OTHERS.
MESSAGE '...' TYPE 'E'.
ENDCASE.
Example
This example demonstrates that the calculation type of an arithmetic expression after CASE
is determined only by its operands. The calculation type after the first CASE
statement is i
and the result of the calculation is 0. The comparison with
the value 0 after WHEN
is true regardless of its data type. The calculation
type of the comparison after IF
is decfloat34
,
however, and the result is false. To force a specific calculation type after CASE
,
a further operand can be added as shown in the second CASE
statement. This operand is not involved in the calculation.
DATA:
inum1 TYPE i VALUE 1,
inum2 TYPE i VALUE 3,
decf TYPE decfloat34 VALUE 0.
CASE inum1 / inum2.
WHEN decf.
cl_demo_output=>write_text( 'In CASE equal' ).
ENDCASE.
IF decf <> inum1 / inum2.
cl_demo_output=>write_text( 'In IF not equal' ).
ENDIF.
CASE CONV decfloat34( inum1 / inum2 ).
WHEN decf.
cl_demo_output=>write_text( 'In CASE equal' ).
WHEN OTHERS.
cl_demo_output=>write_text( 'In CASE not equal' ).
ENDCASE.
cl_demo_output=>display( ).