cancel
Showing results for 
Search instead for 
Did you mean: 

material problem

Former Member
0 Kudos
105

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

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

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

Former Member
0 Kudos

Hi anid,

Can u eloborate how to use conversion exit FM.

cheers

kaki

Former Member
0 Kudos

hi,

goto se11 - > DATA Element - MATNR - > double click the domain there the conversion routine is specified

then double click conversion routine you can see two function module (input / output )

cheers,

sasi

Former Member
0 Kudos

Thank u anid & sasi

cheers

kaki

Former Member
0 Kudos

Thanks

Message was edited by: Anid

Answers (0)