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

Material Description

former_member196517
Contributor
0 Likes
1,868

Hi Colleagues,

Can you please let me know the table where a description of Material is stored . (transaction mm01).

Rgards

Anuj

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,741

table : MAKT

Field: MAKTX.

10 REPLIES 10
Read only

Former Member
0 Likes
1,742

table : MAKT

Field: MAKTX.

Read only

Former Member
0 Likes
1,741

Please check MAKT .

Read only

Former Member
0 Likes
1,741

MAKT table

Read only

sreeramkumar_madisetty
Active Contributor
0 Likes
1,741

Hi

<b>MAKT-MAKTX.</b>

Regards,

Sree

Read only

Former Member
0 Likes
1,741

HI,

go to table MAKT..

yopu will find the material descriptions in all the languages..

select MAKTC from MAKT where matnr = <matnr> and SPRAS = 'EN'.

rewards if useful,

regards,

nazeer

Read only

Former Member
0 Likes
1,741

The MAKTX field gives the Material description. The table is MAKT and language SPRAS = 'EN'.Also if the description is required in CAPS,the field is MAKTG.

Thanks ,

Swarna

Read only

Former Member
0 Likes
1,741

Hi,

I need to know the table where Basic data text are stored.

In transaction MM03, go to supplementary data and then in tab "Basic data text"; there are secondary description of material.

Thanks in advance

Read only

0 Likes
1,741

Hi,

Write code like this you will get the basic data of the material

  data: rt_lines like tline occurs 20  with header line.

  stxl_id-tdname = <Material Number>.
    import tline to rt_lines
      from database stxl(tx)
           id       stxl_id.

Regards,

Satish

Read only

0 Likes
1,741

Thanks!!!

There is no table as MATK (field MAKTX) for principle description?

Read only

0 Likes
1,741

Basic data text will not be stored in table.

You need to fetch that text using FM READ_TEXT or by using my method which i gave above.

Regards,

Satish