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

Function module

Former Member
0 Likes
772

Is there any FM , to get the Material nd Material Desc if i give the material .

regards,

Ram

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
629

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

5 REPLIES 5
Read only

Former Member
0 Likes
629

try BAPI_MATERIAL_GET_DETAIL

Read only

Former Member
0 Likes
630

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

Read only

Former Member
0 Likes
629

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

Read only

Former Member
0 Likes
629

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.

Read only

Former Member
0 Likes
629

Hello,

The function name is: RFC_GET_MATERIAL_DATA

Regards

Marek