‎2009 Feb 09 6:18 PM
Hi
How can I get the system table for stroring data in MM03 in "Additional Data" the "basic data text" ?
Thanks in advance.
‎2009 Feb 09 6:40 PM
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!
‎2009 Feb 09 6:40 PM
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!
‎2009 Feb 09 6:45 PM
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
‎2009 Feb 09 9:18 PM
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.