‎2007 Nov 07 6:39 AM
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 ????
‎2007 Nov 07 6:42 AM
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
‎2007 Nov 07 6:42 AM
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
‎2007 Nov 07 6:58 AM
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
‎2007 Nov 07 7:08 AM
Hi Saurabh,
Use the FM CONVERSION_EXIT_ABPSP_INPUT,
CONVERSION_EXIT_ABPSP_OUTPUT for ur requirement.
Regards
Srimanta
‎2007 Nov 07 7:09 AM
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