2009 Mar 24 1:16 PM
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
2009 Mar 24 1:31 PM
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.
2009 Mar 24 1:21 PM
Hi
check this FM
READ_TEXT_ELEMENTS
CBIH_LB39_TEXTELEMENT_READ
also
check these tables
table STXH and STXL.
2009 Mar 24 1:31 PM
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.