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

BAPI for Material Number

Former Member
0 Likes
503

Hi All,

I want the BAPI name for searching a particular material number that whether the material number is created or not.

Thanx in advance,

Rajeev.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
472

Hi,

Try

BAPI_MATERIAL_EXISTENCECHECK

Regards

3 REPLIES 3
Read only

Former Member
0 Likes
472

Hi,

PLease try following FM BAPI_MATERIAL_DISPLAY

Hope this help

Read only

Former Member
0 Likes
473

Hi,

Try

BAPI_MATERIAL_EXISTENCECHECK

Regards

Read only

Former Member
0 Likes
472

Hello

Just try this:


select single * from MARA where matnr = p_matnr. " set material number here
if sy-subrc = 0.
* created
else.
* not created
endif.