2009 Jan 15 3:57 AM
Hello everybody please tell me how to convert pack decimal value into Char value
ASAP
2009 Jan 15 4:04 AM
Hi,
declare another variable with char type of same length and move it.
eg :DATA : v1 TYPE p DECIMALS 2 VALUE '10.55',
v2(10) TYPE c.
v2 = v1.
WRITE : v1,
/ v2.
Hope it helps
Regards,
Pavan
2009 Jan 15 4:06 AM
Hi Sandeep,
try using pack and unpack.
thanks & regards
Ruchi Tiwari
2009 Jan 15 4:20 AM