2008 Aug 20 12:21 PM
Hi,
In My Report, I am facing a problem regarding leading 0's...means in LFA1 table, i can find vendor no. easily like 10120 but in WITH_ITEM table, when i m inserting vendor no. like 10120, it not shows the data...but when i inserting vendor no. "0000010120", it shows the values.
From this, my report not showing the vendor data..
Plz tell me how can i remove this issue..
Any code there or any other thing is required..
Thanks...
2008 Aug 20 12:24 PM
Hello
Please use FM's
CONVERSION_EXIT_ALPHA_INPUT
CONVERSION_EXIT_ALPHA_OUTPUT
Thanks and Regards
Pushkar Joshi
Hello
Please use FM's
CONVERSION_EXIT_ALPHA_INPUT
CONVERSION_EXIT_ALPHA_OUTPUT
Thanks and Regards
Pushkar Joshi
2008 Aug 20 12:23 PM
CONVERSION_EXIT_ALPHA_INPUT
CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
EXPORTING
input = I_LIFNR
IMPORTING
OUTPUT = I_LIFNR.
Edited by: Bala Krishna on Aug 20, 2008 4:54 PM
2008 Aug 20 12:23 PM
Use conversion_exit_alpha_input.
Edited by: shilpi agarwal on Aug 20, 2008 1:23 PM
2008 Aug 20 12:24 PM
Hi,
U can use FM conversion_exit_alpha_input for convert your input lifnr.
2008 Aug 20 12:24 PM
Hi ,
Use this Fm
CONVERSION_EXIT_ALPHA_INPUT
Regards,
Sachin M M
2008 Aug 20 12:24 PM
Hello
Please use FM's
CONVERSION_EXIT_ALPHA_INPUT
CONVERSION_EXIT_ALPHA_OUTPUT
Thanks and Regards
Pushkar Joshi
2008 Aug 20 12:25 PM
Hi,
Fill with leading zeros.
call function 'CONVERSION_EXIT_ALPHA_INPUT'
exporting
input = lifnr "Whitout leading zeros
importing
output = out "lifnr with leading zeros.
regards
Jaime
2008 Aug 20 12:25 PM
Hi,
Use the CONVERTION_EXIT_ALPHA_INPUT fonction module.
Regards,
Sathish Reddy.
2008 Aug 20 12:25 PM
Hi,
Use this Fm : 'CONVERSION_EXIT_ALPHA_INPUT'.That will solve ur issue.
CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
EXPORTING
INPUT = VENDOR NO
IMPORTING
OUTPUT = VENDOR NO
.
Hope it is helps.
Regards,
T.D.M.
2008 Aug 20 12:27 PM
Hi ,
Try this.
CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
EXPORTING
input = ws_vendorno
IMPORTING
output = ws_vendorno.
Regards,
Chitra
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |