on 2005 Nov 10 11:21 AM
Hi,
While i debugging my abap program itab-matnr showing
the some number like '000000003010009385' instead of material.
How can i get material instead of this numbers...
reward guaranteed
kaki
you hacve to use conversion exit FM
two FMs are there..
CONVERSION_EXIT_MATN1_INPUT
CONVERSION_EXIT_MATN1_output
you have to use the second one
loop at itab. "i hope itab is with header line
CALL FUNCTION 'CONVERSION_EXIT_MATN1_OUTPUT'
EXPORTING
input = ITAB-matnr
IMPORTING
OUTPUT = ITAB-matnr.
modIFY ITAB.
ENDLOOP.
PLZ REWARD POINT IF IT HELPS YOU
if you want to see how conversion exit works..just go to se37->enetr fm name as CONVERSION_EXIT_MATN1_OUTPUT
->press F8..provide input as 00000977235---> press F8..see the outcome
Message was edited by: Anid
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
100 | |
8 | |
6 | |
6 | |
5 | |
5 | |
5 | |
3 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.