2006 Sep 21 4:47 PM
Hi Folks!
I was looking for the table where the long text is saved in the database when using the FM CREATE_TEXT.
I know that the table 'STXH' is updated, however this table does not contain the text.
Can anyone knows in what table this text is in?
Thanks.
Regards,
Gilberto Li
2006 Sep 21 4:50 PM
Hi Folks!
I was looking for the table where the long text is saved in the database when using the FM CREATE_TEXT.
I know that the table 'STXH' is updated, however this table does not contain the text.
Can anyone knows in what table this text is in?
Thanks.
Regards,
Gilberto Li
2006 Sep 21 4:50 PM
2006 Sep 21 4:50 PM
Hi,
The text is stored in the Files. You can access it using Function module READ_TEXT.
Hope this helps.
2006 Sep 21 4:50 PM
2006 Sep 21 4:52 PM
2006 Sep 21 4:55 PM
Though the <b>STXL table</b> stores the value it will not be in readable format. So better use the FM <b>READ_TEXT</b> for getting the values.
Prakash.
Message was edited by: Prakash Ramu
2006 Sep 21 4:59 PM
STXH for header
STXL for items
but you cant read them from these tables.data will be stored in RAW format.
you have to use READ_TEXT function module to read the text .for this you have to pass,
OBJECT
ID
NAME
LANGUAGE.
regards
Srikanth
2006 Sep 21 5:07 PM
Hi,
check out STXL table where data is stored in raw format.
Regards
Amole
2006 Sep 21 5:10 PM
Hi,
use read_text function module to read text lines
edit_text to edit existing text
CALL FUNCTION 'READ_TEXT'
EXPORTING
ID = 'ST'
LANGUAGE = SY-LANGU
NAME = THEAD-TDNAME
OBJECT = 'TEXT'
TABLES
LINES = TLINE_TAB
EXCEPTIONS
ID = 1
LANGUAGE = 2
NAME = 3
NOT_FOUND = 4
OBJECT = 5
REFERENCE_CHECK = 6
WRONG_ACCESS_TO_ARCHIVE = 7
OTHERS = 8.
Regards
Amole
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |