<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: finding 'text-' in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/finding-text/m-p/2113249#M442006</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Abhishek ,&lt;/P&gt;&lt;P&gt;Run Extended Program Check for your program from menu Program--&amp;gt;Check --&amp;gt; Extended Check and also Code-inspector.&lt;/P&gt;&lt;P&gt;These test will display the List of Un-asssigned Text as well as fields which are not used in the Program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tx&lt;/P&gt;&lt;P&gt;Parthi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Apr 2007 06:48:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-02T06:48:10Z</dc:date>
    <item>
      <title>finding 'text-'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/finding-text/m-p/2113243#M442000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;I have to find all the text elements ie 'TEXT-' in ne given pgm.&lt;/P&gt;&lt;P&gt;This is required as i want the o/p as list of all the text literals and unassigned text symbols.&lt;/P&gt;&lt;P&gt;So any one can help on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2007 06:01:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/finding-text/m-p/2113243#M442000</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-02T06:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: finding 'text-'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/finding-text/m-p/2113244#M442001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt; begin of wa,&lt;/P&gt;&lt;P&gt;   str type string,&lt;/P&gt;&lt;P&gt; end of wa.&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;  itab like standard table of wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ REPORT &amp;lt;prog&amp;gt; INTO itab .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab into wa.&lt;/P&gt;&lt;P&gt;  if wa cs 'text-'.&lt;/P&gt;&lt;P&gt;    write:/ ' line no..',sy-tabix,&lt;/P&gt;&lt;P&gt;           ' The position...', sy-fdpos,&lt;/P&gt;&lt;P&gt;           ' the line is...' wa-str.&lt;/P&gt;&lt;P&gt;   endif.&lt;/P&gt;&lt;P&gt; endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will get u all the text literals..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Rammohan Nagam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2007 06:03:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/finding-text/m-p/2113244#M442001</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-02T06:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: finding 'text-'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/finding-text/m-p/2113245#M442002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;chk this program  RS_ABAP_SOURCE_SCAN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2007 06:05:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/finding-text/m-p/2113245#M442002</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-02T06:05:42Z</dc:date>
    </item>
    <item>
      <title>Re: finding 'text-'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/finding-text/m-p/2113246#M442003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi..,&lt;/P&gt;&lt;P&gt;use the READ REPORT statement... in ur program.&lt;/P&gt;&lt;P&gt;It reads each line of your program into an internal table as one record.. now search in the string...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;parameter: p_report type SY-REPID .&lt;/P&gt;&lt;P&gt;data :&lt;/P&gt;&lt;P&gt;t_sourcetab type standard table of D022S,&lt;/P&gt;&lt;P&gt;wa_line(72) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ REPORT p_report INTO t_sourcetab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at t_sourcetab into wa_line.&lt;/P&gt;&lt;P&gt;search wa_line for 'text-'.&lt;/P&gt;&lt;P&gt;if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;write : 'Column:', sy-fdpos, 'Line.no:' , sy-tabix.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;sai ramesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2007 06:05:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/finding-text/m-p/2113246#M442003</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-02T06:05:56Z</dc:date>
    </item>
    <item>
      <title>Re: finding 'text-'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/finding-text/m-p/2113247#M442004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhishek Mishra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this might help you in this regard....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data textpool_tab like textpool occurs 0 with header lin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TEXTPOOL &amp;lt;PROGRAM-NAME&amp;gt; INTO TEXTPOOL_TAB LANGUAGE &amp;lt;SY-LANGU/LANGUAGE&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This reads the text pool statements of the given program of the given language.&lt;/P&gt;&lt;P&gt;Check the help for further details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ramesh S&lt;/P&gt;&lt;P&gt;*Allocate the points if reply is useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2007 06:13:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/finding-text/m-p/2113247#M442004</guid>
      <dc:creator>learnsap</dc:creator>
      <dc:date>2007-04-02T06:13:40Z</dc:date>
    </item>
    <item>
      <title>Re: finding 'text-'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/finding-text/m-p/2113248#M442005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;run the prog  RPR_ABAP_SOURCE_SCAN(i am in  version 4.6c) and in find string give &lt;STRONG&gt;text-&lt;/STRONG&gt; give prog name and press execute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SHIBA DUTTA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2007 06:18:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/finding-text/m-p/2113248#M442005</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-02T06:18:29Z</dc:date>
    </item>
    <item>
      <title>Re: finding 'text-'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/finding-text/m-p/2113249#M442006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Abhishek ,&lt;/P&gt;&lt;P&gt;Run Extended Program Check for your program from menu Program--&amp;gt;Check --&amp;gt; Extended Check and also Code-inspector.&lt;/P&gt;&lt;P&gt;These test will display the List of Un-asssigned Text as well as fields which are not used in the Program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tx&lt;/P&gt;&lt;P&gt;Parthi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2007 06:48:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/finding-text/m-p/2113249#M442006</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-02T06:48:10Z</dc:date>
    </item>
    <item>
      <title>Re: finding 'text-'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/finding-text/m-p/2113250#M442007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In wa-str i only want that 'text-...' should only be displayed rather then complete line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2007 07:59:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/finding-text/m-p/2113250#M442007</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-02T07:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: finding 'text-'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/finding-text/m-p/2113251#M442008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhishek,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can query the TADIR table using the object 'REPT' (report Text) by specifying the report name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;give object as REPT&lt;/P&gt;&lt;P&gt;and Obj_name as &amp;lt;report name&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u will get the list of text elements used int that report&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2007 10:28:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/finding-text/m-p/2113251#M442008</guid>
      <dc:creator>former_member671224</dc:creator>
      <dc:date>2007-04-02T10:28:51Z</dc:date>
    </item>
  </channel>
</rss>

