‎2008 Aug 21 5:38 PM
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
‎2008 Aug 21 5:58 PM
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.
‎2008 Aug 21 6:07 PM
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
‎2008 Aug 21 5:59 PM
The problem lies in the definiton of the matnr field. just delte the field and Add it once again and see..
‎2008 Aug 21 6:05 PM
i did,
even i changed to field as Material and data element MATNR.
but is is showing same error.
Giri