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

Finding the text table.

Former Member
0 Likes
1,751

hi,

I wanted to know the finction module read_text which we use to read the text.

from which table does this function modules fetchec the TDLINES.

where does the text get stored?

1 ACCEPTED SOLUTION
Read only

amit_khare
Active Contributor
0 Likes
1,452

STXH

9 REPLIES 9
Read only

amit_khare
Active Contributor
0 Likes
1,453

STXH

Read only

0 Likes
1,452

i tried STXL, STXH, but it is not showing any text in that.

Read only

0 Likes
1,452

Hi

You can't see the texts

but they are stored in STXL table in the field

CLUSTD

it is a LRAW type field with 7902 characters

so it is not visisble to see in SE11/SE16 tcodes

<REMOVED BY MODERATOR>

Regards

Anji

Edited by: Alvaro Tejada Galindo on Apr 8, 2008 1:05 PM

Read only

Former Member
0 Likes
1,452

Hi

check the table STXH and STXL

<REMOVED BY MODERATOR>

Regards

Anji

Edited by: Alvaro Tejada Galindo on Apr 8, 2008 1:05 PM

Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,452

Look at STXH and STXL header and lines

STXH - STXD SAPscript text file header - is a transparent tabme

STXL - STXD SAPscript text file lines - is a cluster table of course.

Regards

Read only

0 Likes
1,452

Does the field STXL-CLUSTD stores the text. butr why is it showing in different format?

Read only

0 Likes
1,452

Text is stored in a "cluster mode". multilines with format ans so.

Regards

Read only

0 Likes
1,452

For more details look at <a href="http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVSCRPROG/BCSRVSCRPROG.pdf">BC SAPscript: Printing with Forms</a> page 79 "Storing Text Components"

<i><b>STXH: Store text header</b>

The text header is stored in the transparent table STXH. This table contains both the text headers of SAPscript texts and of texts with other formats. When reading the table, the system copies this information into the corresponding fields of structure THEAD, which is the basic structure of the internal work area of the text header.

<b>STXL: Store text lines in ITF format</b>

Table STXL stores the text lines of a text in ITF format [Seite 63]. This is a non-transparent table, which can be accessed using IMPORT FROM DATABASE / EXPORT TO DATABASE. The text lines are stored in compressed form.

<b>STXB: Store text lines in other formats</b>

If in field TDTEXTTYPE of the text header a text format appears, the text module has a non-SAPscript format. The lines of such texts are stored in table STXB. This table can also store non-representable characters (HEX codes < SPACE). STXB is a non-transparent table, which can be accessed using IMPORT FROM DATABASE / EXPORT TO DATABASE. The text lines are stored in compressed form.</i>

Regards

Read only

0 Likes
1,452

Is there any program that converts these texts into an excel file?