‎2008 Feb 01 10:26 AM
Hi all
Is this possible to convert string to type p .
if yes than how ? it's urgent .
‎2008 Feb 01 10:30 AM
Hi,
data : a type string value '567',
b type p.
move a to b.
write: a,b.
Cheers,
Will.
‎2008 Feb 01 10:34 AM
Hi,
Please refer to the FM below :
HRCM_STRING_TO_AMOUNT_CONVERT
Thanks,
Sriram Ponna.
‎2008 Feb 01 10:37 AM
Hi,
Do like this
translate char_field using ',.'.
CONDENSE char_field NO-GAPS.
move char_field to p_field.
Regards,
Satish
‎2008 Feb 01 10:42 AM