Application Development 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: 

TEXT-SYMBOLS

Former Member
0 Kudos

Hi,

I'm looking for the table or format in which the TEXT-SYMBOLS of SE38 report sources (e.g. WRITE TEXT-001) are stored.

Is there any information about that?

Thank you

Norbert

1 ACCEPTED SOLUTION

former_member209217
Active Contributor
0 Kudos

Hi,

Use READ TEXTPOOL statement for reading text symbols.Its the easiest way.

Refer ths link

[Text Symbols|http://help.sap.com/saphelp_nw04/Helpdata/EN/1e/401ad6ee3c11d1951d0000e8353423/frameset.htm]

Regards,

Lakshman.

7 REPLIES 7

Former Member
0 Kudos

Check the table REPOTEXT

MarcinPciak
Active Contributor
0 Kudos

In this table texts are stored in binary form. If you want to use that texts in report use [READ TEXTPOOL|http://help.sap.com/abapdocu_70/en/ABAPREAD_TEXTPOOL_SHORTREF.htm] statement.

Regards

Marcin

0 Kudos

WB2B_GET_REPORT_TEXTELEMENT

use this FM to read the texts

0 Kudos

Do you need an FM when a standard SAP command can serve the purpose for you ?

0 Kudos

>

> Do you need an FM when a standard SAP command can serve the purpose for you ?

just giving another option.

former_member209217
Active Contributor
0 Kudos

Hi,

Use READ TEXTPOOL statement for reading text symbols.Its the easiest way.

Refer ths link

[Text Symbols|http://help.sap.com/saphelp_nw04/Helpdata/EN/1e/401ad6ee3c11d1951d0000e8353423/frameset.htm]

Regards,

Lakshman.

venkat_o
Active Contributor
0 Kudos

Hi , <li>As Marcin pointed, you can try this way.


REPORT ztest_notepad.
DATA:itab TYPE TABLE OF char100.
DATA:wtab LIKE LINE OF itab.
READ TEXTPOOL 'ZTEST_NOTEPAD' INTO itab LANGUAGE sy-langu.
LOOP AT itab INTO wtab.
  WRITE:/ wtab.
ENDLOOP.
Thanks Venkat.O