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: 

Basic Data Text in MM03

Former Member
0 Kudos
15,257

Dear All,

What tables maintain the "Basic data text" details on the MM03.

1 ACCEPTED SOLUTION

Former Member
3,270

Hi,

You cannot read basic data text or any text in tables directly, for that you need to call function module READ_TEXT. All Long texts or called as SAP script texts can be read only through this function module.

You need to pass 4 mandatory parameters to this FM:

ID

LANGUAGE

NAME

OBJECT

For basic data text for material the values will be:

ID = 'GRUN'

LANGUAGE = 'EN'

NAME = Material Number

OBJECT = 'MATERIAL'

When header information and text lines have been read successfully, they are transferred to the work areas HEADER and LINES Export & Table parameter.

Regards,

Ravi K

5 REPLIES 5

Former Member
0 Kudos
3,270

Hi,

Tables are

MARA

MARC

MVKE

MBEW

MARD

MAKT

Rakesh

0 Kudos
3,270

No I want the data when u click on the basic data 1 tab -> basic data text push button.

its not in tables u mentioned

0 Kudos
3,270

Hi Keshan,

The table is STXH.

Fill in TDOBJECT = 'MATERIAL'

TDNAME = Your Material Number.

To Get the text use function READ_TEXT

Passing --> ID --> STXH-TDID

LANGUAGE --> STXH-TDSPRAS

NAME --> STXH-TDNAME

OBJECT --> STXH-TDOBJECT

The text is returned in Tables Lines from the function.

Hope it helps,

Victor.

0 Kudos
3,270

Hi,

the Basic data text gets stored in some text tables which can be read using READ_TEXT . For this text you have the

TDOBJECT = 'MATERIAL'

TDNAME = material no with leading zeros

TDID = 'GRUN'

TFSPRAS = 'EN'

and check you will get the req. text.

Further , to get these details, go to Table STXH and give TDNAME = material no (Leading Zeros) you will find the details

Reward points

Raj

Former Member
3,271

Hi,

You cannot read basic data text or any text in tables directly, for that you need to call function module READ_TEXT. All Long texts or called as SAP script texts can be read only through this function module.

You need to pass 4 mandatory parameters to this FM:

ID

LANGUAGE

NAME

OBJECT

For basic data text for material the values will be:

ID = 'GRUN'

LANGUAGE = 'EN'

NAME = Material Number

OBJECT = 'MATERIAL'

When header information and text lines have been read successfully, they are transferred to the work areas HEADER and LINES Export & Table parameter.

Regards,

Ravi K