Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

profit center conversion Function Module

Former Member
0 Likes
1,079

Hi,

Is there Any Function Module to Convert Profit Center from 4 digit into 10 digit.

Regards,

Dhanush.S.T

1 REPLY 1
Read only

Former Member
0 Likes
653

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