2008 Mar 20 5:13 AM
Hi,
Is there Any Function Module to Convert Profit Center from 4 digit into 10 digit.
Regards,
Dhanush.S.T
2008 Mar 20 7:17 AM
Try using FM CONVERSION_EXIT_ALPHA_INPUT.
data: lv_prctr type prctr value '1234'.
CALL 'CONVERSION_EXIT_ALPHA_INPUT'
exporting input = lv_prctr
importing output = lv_prctr.
"After this call lv_prctr will have values '0000001234'.
Hope this helps.
Thanks,
Balaji