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

Basic Data Text in MM03

Former Member
0 Likes
21,870

Dear All,

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

1 ACCEPTED SOLUTION
Read only

Former Member
9,883

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
Read only

Former Member
0 Likes
9,883

Hi,

Tables are

MARA

MARC

MVKE

MBEW

MARD

MAKT

Rakesh

Read only

0 Likes
9,883

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

Read only

0 Likes
9,883

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.

Read only

0 Likes
9,883

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

Read only

Former Member
9,884

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