‎2012 Aug 22 1:30 PM
Hi all,
I'd like to know if there's a FM that returns all Program Texts (Selection Texts, Text Symbols and List Heading) or, maybe, a DD table.
Thanks
‎2012 Aug 22 1:37 PM
The statement READ TEXTPOOL prog INTO itab LANGUAGE lang. reads the text elements of a program in an internal table.
You can also call FM like RS_TEXTPOOL_READ (pass an explicit space value in parameter ACTION)
(You can fin many other FMs performing a where-used in FM interfaces on structure TEXTPOOL)
Regards,
Raymond
‎2012 Aug 22 1:37 PM
The statement READ TEXTPOOL prog INTO itab LANGUAGE lang. reads the text elements of a program in an internal table.
You can also call FM like RS_TEXTPOOL_READ (pass an explicit space value in parameter ACTION)
(You can fin many other FMs performing a where-used in FM interfaces on structure TEXTPOOL)
Regards,
Raymond
‎2012 Aug 22 1:52 PM
Hi,
Check the bellow link for using the fm 'RS_TEXTPOOL_READ'.
‎2012 Aug 22 1:57 PM
Thank you for your help, fm 'RS_TEXTPOOL_READ' is exactly what I need