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

System table for Additional Data - Basic data text (MM03)

Former Member
0 Likes
2,262

Hi

How can I get the system table for stroring data in MM03 in "Additional Data" the "basic data text" ?

Thanks in advance.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,457

Long Texts are stored in tables STXL and STXH. You can retrieve the values using FM READ_TEXT. You would need the object, name and id in order to use this FM.

Hope this helps!

3 REPLIES 3
Read only

Former Member
0 Likes
1,458

Long Texts are stored in tables STXL and STXH. You can retrieve the values using FM READ_TEXT. You would need the object, name and id in order to use this FM.

Hope this helps!

Read only

BH2408
Active Contributor
0 Likes
1,457

Hi,

CALL FUNCTION 'READ_TEXT'

EXPORTING

CLIENT = SY-MANDT

ID = 'Z610'

LANGUAGE = SY-LANGU

NAME = V_TDNAME

OBJECT = 'VBBK'

ARCHIVE_HANDLE = 0

IMPORTING

HEADER = I_TEXT_HEAD

TABLES

LINES = I_TEXT_LINE

EXCEPTIONS

ID = 1

LANGUAGE = 2

NAME = 3

NOT_FOUND = 4

OBJECT = 5

REFERENCE_CHECK = 6

WRONG_ACCESS_TO_ARCHIVE = 7

OTHERS = 8.

Regards,

Bharani

Read only

Former Member
0 Likes
1,457

Thanks Pankaj Banka & Bharani.

I could solve it, thanks to you.

READ_TEXT parameters:

CLIENT 220

ID GRUN

LANGUAGE ES

NAME XXXXXX

OBJECT MATERIAL

ARCHIVE_HANDLE 0

LOCAL_CAT

Where name is Material Code.

Thank you very much.