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

Material number conversion - error

Former Member
0 Likes
1,008

HI Experts,

i got a strange error...

i created a Ztable and one of the non - primary key is MATNR with dat element MATNR.

i wrote a RFC with table parameter T_ZTABLE like ZTABLE structure.

when i execute and want to insert some values in the T_ZTABLE structure then i am getting error like

"Settings for material number conversion not found" and it exiting to SAP menu screen

pls help in this issue

Giri

4 REPLIES 4
Read only

Former Member
0 Likes
805

I think before you assing the material number to that field you need to convert the material number into SAP format like adding leading zeros.

You can use the below fm to do the same

CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'

EXPORTING

INPUT = v_material

IMPORTING

OUTPUT = v_material.

Read only

0 Likes
805

this error coming at the time of entering values as input to structure.. not after executing RFC.

how can i convert it at the time of input structure opening

Read only

Former Member
0 Likes
805

The problem lies in the definiton of the matnr field. just delte the field and Add it once again and see..

Read only

0 Likes
805

i did,

even i changed to field as Material and data element MATNR.

but is is showing same error.

Giri