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: 

How to get the text elements for a particular program

Former Member
0 Kudos
829

Hi All,

I want to get the all text elements , selection texts for a particular program...How to get.

I have used one FM READ_TEXTELEMENT_FROM_REPORT , but not much useful..

please help me..

Regards,

raj

1 ACCEPTED SOLUTION

Former Member
0 Kudos
523

Hi..

You may use this statement to read the text elements:

DATA: i_reptx TYPE STANDARD TABLE OF textpool WITH HEADER LINE.

READ TEXTPOOL (reports) INTO i_reptx. " reports is the report name.

Best Regards,

Pradeep.

2 REPLIES 2

viquar_iqbal
Active Contributor
0 Kudos
523

Hi

check this FM

READ_TEXT_ELEMENTS

CBIH_LB39_TEXTELEMENT_READ

also

check these tables

table STXH and STXL.

Former Member
0 Kudos
524

Hi..

You may use this statement to read the text elements:

DATA: i_reptx TYPE STANDARD TABLE OF textpool WITH HEADER LINE.

READ TEXTPOOL (reports) INTO i_reptx. " reports is the report name.

Best Regards,

Pradeep.