‎2010 Mar 17 9:29 PM
Hi
Pls. let me know that,
1) Where the TEXT ELEMENTS (Report Prog., FM etc) are stored, Which table its?
2) Where the SELECTION TEXTS (Selection screen labels of a Report Prog.) are stored, Which table its?
Actually, I tried from debugging and 'F1' help but, no success!!
Thank you
‎2010 Mar 17 9:39 PM
You can get text elements of the program using FM READ_TEXT_ELEMENTS
Check the below thread for sample pgm.
or Use the ABAP command:
READ TEXTPOOL prog INTO itab LANGUAGE lang. This gets you all the texts associated with "prog".
DATA: PROG LIKE SY-REPID VALUE 'PROGNAME',
ITAB LIKE TEXTPOOL OCCURS 50 WITH HEADER LINE.
READ TEXTPOOL PROG INTO ITAB LANGUAGE SY-LANGU.
‎2010 Mar 17 9:39 PM
You can get text elements of the program using FM READ_TEXT_ELEMENTS
Check the below thread for sample pgm.
or Use the ABAP command:
READ TEXTPOOL prog INTO itab LANGUAGE lang. This gets you all the texts associated with "prog".
DATA: PROG LIKE SY-REPID VALUE 'PROGNAME',
ITAB LIKE TEXTPOOL OCCURS 50 WITH HEADER LINE.
READ TEXTPOOL PROG INTO ITAB LANGUAGE SY-LANGU.