packed decimal to character
Hi in this program i need to move data from type P to Char field.
Please suggest me how to handle this logic in ECC.
data: begin of itab
a(1) type c,
b(2) type c,
c type i,
end of itab.
data: d(13) TYPE c .
itab-a = 'a'.
itab-b = 'b'.
itab-c = '123456789'.
d = itab.
write:/ d.
Regards
Bhaskar