‎2009 Jul 06 7:27 AM
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.
‎2009 Jul 06 7:30 AM
‎2009 Jul 06 7:30 AM
Hi,
PLease try following FM BAPI_MATERIAL_DISPLAY
Hope this help
‎2009 Jul 06 7:30 AM
‎2009 Jul 06 7:32 AM
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.