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

Long text table

Former Member
0 Likes
2,541

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

1 ACCEPTED SOLUTION
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
1,806

The text is stored in STXL, but you can read it. You need to read the text using the READ_TEXT function module.

Regards,

Rich Heilman

8 REPLIES 8
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
1,807

The text is stored in STXL, but you can read it. You need to read the text using the READ_TEXT function module.

Regards,

Rich Heilman

Read only

Former Member
0 Likes
1,806

Hi,

The text is stored in the Files. You can access it using Function module READ_TEXT.

Hope this helps.

Read only

Former Member
0 Likes
1,806

hi,

STXL

Thanks,

Naren

Read only

Former Member
0 Likes
1,806

Hi,

Please check table STXL.

Regards,

Ferry Lianto

Read only

Former Member
0 Likes
1,806

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

Read only

Former Member
0 Likes
1,806

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

Read only

Former Member
0 Likes
1,806

Hi,

check out STXL table where data is stored in raw format.

Regards

Amole

Read only

Former Member
0 Likes
1,806

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