From Abap2Java
ABAP
Numeric Data Type in the ABAP Dictionary for whole numbers, that corresponds to the predefined ABAP Data Type I.
| Default | 0
|
| Size | 32 Bit
|
| Range | from -2147483647 to 2147483647
|
DATA i TYPE INT4.
i = 8 * 4.
Java
see int
int i;
i = 8 * 4;