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

convert number

Former Member
0 Likes
670

hello experts,

i am developing interactive report.

problem : i am dealing with prps table(Fetching values). when insert a number(in table) lets say G.12345 the corresponding number (calculates in background) appears lets say 000322.

requirement : i have G.12345 in one of my field. my requirement is that this number to be converted to corresponding value 000322 during processing.

how do i do that in report???? ne sample code ????

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
640

Hi

use the CONVERSION EXIT present for that field in the code using the fun module

CONVERSION_EXIT_ALPHA_INPUT/OUTPUT

goto the domain/data element of that field and see for this conversion exit and use

Regards

Anji

4 REPLIES 4
Read only

Former Member
0 Likes
641

Hi

use the CONVERSION EXIT present for that field in the code using the fun module

CONVERSION_EXIT_ALPHA_INPUT/OUTPUT

goto the domain/data element of that field and see for this conversion exit and use

Regards

Anji

Read only

Former Member
0 Likes
640

Hi,

PSPNR field has conversion routine. U find it first at domain level. Use that routine in conversion exit function module like:

conversion_exit_(routine name for pspnr) _output.

U export the existing value and get original value.

regards,

Subbu

Read only

Former Member
0 Likes
640

Hi Saurabh,

Use the FM CONVERSION_EXIT_ABPSP_INPUT,

CONVERSION_EXIT_ABPSP_OUTPUT for ur requirement.

Regards

Srimanta

Read only

Former Member
0 Likes
640

Hi,

The following are the existing conversion routenes for the fiels pspnr ,try to use these for u r requirement.

CONVERSION_EXIT_ABPSP_INPUT(Conversion External > Internal WBS Element Number)

CONVERSION_EXIT_ABPSP_OUTPUT (onversion Internal > External WBS Element Number)

Sastry