‎2007 Jun 19 4:00 PM
Is there any FM , to get the Material nd Material Desc if i give the material .
regards,
Ram
‎2007 Jun 19 4:22 PM
hi Ram,
<b>MAKTX</b> is the field that stores the description. So simply write a select statement on MAKT table to get the description.
Regards,
Santosh
‎2007 Jun 19 4:16 PM
‎2007 Jun 19 4:22 PM
hi Ram,
<b>MAKTX</b> is the field that stores the description. So simply write a select statement on MAKT table to get the description.
Regards,
Santosh
‎2007 Jun 19 4:23 PM
Hi
use the fun module
OIRC_GET_MATERIAL_TEXT or
RMSA191_GET_TXT_MATERIAL
or simply write a select to MAKT table to get the Material text
Reward points for useful Answers
Regards
Anji
‎2007 Jun 19 4:23 PM
Hi Ram,
Why do you need a function module for that?? You can have your code like this to get your material description.
data : lv_matnr like mara-matnr,
lv_maktx like makt-maktx.
select single maktx from makt into lv_maktx
where matnr = lv+matnr.
Regards
Aneesh.
‎2007 Jun 19 4:28 PM