‎2009 Apr 02 11:44 AM
I need a method that removes all the 0 before the number( as does the pack statement).
‎2009 Apr 02 12:08 PM
hi,
try like below,
DATA: P_FIELD(4) TYPE n VALUE 103,
C_FIELD(4) TYPE C.
PACK P_FIELD TO C_FIELD.
write : c_field, p_field.
hope it helps!!
Regards,
Pavan
‎2009 Apr 02 12:08 PM
hi,
try like below,
DATA: P_FIELD(4) TYPE n VALUE 103,
C_FIELD(4) TYPE C.
PACK P_FIELD TO C_FIELD.
write : c_field, p_field.
hope it helps!!
Regards,
Pavan