‎2009 Sep 03 9:29 AM
Hello,
possible a simple question for the gurus of this forum. When i move the value of a INT4 declared variable into a string variable always a space is added at the end of the string.
Anybody can explain this behaviour?
DATA: int TYPE int4 VALUE 0,
string TYPE string.
string = int.The variable string contains now 3020 (hexadecimal). So why the space?
Regards,
Andy
‎2009 Sep 03 9:35 AM
conversion integer -> string: negative values have a "-" in last position, positive values a space.
Thomas
http://help.sap.com/abapdocu_70/en/ABENCONVERSION_TYPE_IBS.htm
‎2009 Sep 03 9:35 AM
conversion integer -> string: negative values have a "-" in last position, positive values a space.
Thomas
http://help.sap.com/abapdocu_70/en/ABENCONVERSION_TYPE_IBS.htm
‎2009 Sep 03 9:37 AM
>
> conversion integer -> string: negative values have a "-" in last position, positive values a space.
> Thomas
I wish i could give you 10 p(o)ints
Cheers,
Suhas
‎2009 Sep 03 9:38 AM