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

How to get the text elements for a particular program

Former Member
0 Likes
1,985

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
Read only

Former Member
0 Likes
1,679

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.

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

2 REPLIES 2
Read only

viquar_iqbal
Active Contributor
0 Likes
1,679

Hi

check this FM

READ_TEXT_ELEMENTS

CBIH_LB39_TEXTELEMENT_READ

also

check these tables

table STXH and STXL.

Read only

Former Member
0 Likes
1,680

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.