Application Development 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: 

Material Description

former_member196517
Contributor
0 Kudos

Hi Colleagues,

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

Rgards

Anuj

1 ACCEPTED SOLUTION

Former Member
0 Kudos

table : MAKT

Field: MAKTX.

10 REPLIES 10

Former Member
0 Kudos

table : MAKT

Field: MAKTX.

Former Member
0 Kudos

Please check MAKT .

Former Member
0 Kudos

MAKT table

sreeramkumar_madisetty
Active Contributor
0 Kudos

Hi

<b>MAKT-MAKTX.</b>

Regards,

Sree

former_member588853
Active Contributor
0 Kudos

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

Former Member
0 Kudos

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

Former Member
0 Kudos

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

0 Kudos

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

0 Kudos

Thanks!!!

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

0 Kudos

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