‎2006 Sep 22 2:30 AM
HI All,
Can anyone tell me if i declare variable as int1, int2, int4 how many digits it can store
int1 ?
int2?
int3 ?
thnaks ..please tell in number of digits not in bytes
Thanks in Advance .
‎2006 Sep 22 2:32 AM
Hi,
Type - Length
Int1 - 3
Int2 - 5 ( 2-byte integer (signed))
Int3 - 3
Best regards,
Prashant
‎2006 Sep 22 2:33 AM
Hi,
INT1 - 3 digits
INT2 - 5 digits
INT4 - 10 digits
THanks,
Naren
‎2006 Sep 22 2:52 AM
this is what SAP Help says about the Integer Data types..
INT1: 1-byte integer between 0 and 255. The length is set to 3 places for this data type.
INT2: 2-byte integer between -32767 and 32767. Fields of this type should only be used for length fields. These long fields are positioned immediately in front of a long field (type LCHR, LRAW). With INSERT or UPDATE on the long field, the database interface enters the length which was actually used in the length field. The length is set to 5 places for this data type.
INT4: 4-byte integer between -2147483647 bis 2147483647. The length is set to 10 places for this data type.
~Suresh