From Abap2Java
ABAP
Numeric Data Type in the ABAP Dictionary for whole numbers. INT2 does not corresponds to one the the predefined ABAP Data Types.
| Default | 0
|
| Size | 16 Bit
|
| Range | from -32767 to 32767
|
DATA i TYPE INT2.
i = 8 * 4.
See also
INT1, INT4
Java
see short
short s;
s = 8 * 4;