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