<?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: Scan Report pogram in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/scan-report-pogram/m-p/6320346#M1394381</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As Thomas pointed out:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Use the code inspector&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Nov 2009 12:28:52 GMT</pubDate>
    <dc:creator>matt</dc:creator>
    <dc:date>2009-11-02T12:28:52Z</dc:date>
    <item>
      <title>Scan Report pogram</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/scan-report-pogram/m-p/6320335#M1394370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I have requirement where i need yo  find all the internal table declarations in my programe and check whether they start with it_.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Urmila.T&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2009 07:06:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/scan-report-pogram/m-p/6320335#M1394370</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-29T07:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: Scan Report pogram</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/scan-report-pogram/m-p/6320336#M1394371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So whats your question here? Except manually scanning the program i dont think there is any other way&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2009 07:13:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/scan-report-pogram/m-p/6320336#M1394371</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-29T07:13:09Z</dc:date>
    </item>
    <item>
      <title>Re: Scan Report pogram</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/scan-report-pogram/m-p/6320337#M1394372</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 statement for getting all declarations and keywords used in a report&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SCAN ABAP-SOURCE         report
    TOKENS           INTO        tokens_all
    STATEMENTS  INTO        statements
    LEVELS            INTO        levels
    KEYWORDS     FROM      keywords
    WITH ANALYSIS
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lakshman.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Lakshman N on Oct 29, 2009 8:15 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2009 07:15:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/scan-report-pogram/m-p/6320337#M1394372</guid>
      <dc:creator>former_member209217</dc:creator>
      <dc:date>2009-10-29T07:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: Scan Report pogram</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/scan-report-pogram/m-p/6320338#M1394373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;READ REPORT... is the statement used to read the contents of ur program into an internal table.Press F1 on it for syntax and documentation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now loop that internal table and for each line check whether it conatins the string(CS) type standard table of... if so the check whether the internal table name begins with it_ or not for this u can split that particular line at space into different variables or any internal table and then u can check it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shafivullah Mohammad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2009 07:15:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/scan-report-pogram/m-p/6320338#M1394373</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-29T07:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: Scan Report pogram</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/scan-report-pogram/m-p/6320339#M1394374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use program &lt;STRONG&gt;RPR_ABAP_SOURCE_SCAN&lt;/STRONG&gt; and &lt;STRONG&gt;SEARCH&lt;/STRONG&gt; for the string you required.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2009 07:16:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/scan-report-pogram/m-p/6320339#M1394374</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2009-10-29T07:16:38Z</dc:date>
    </item>
    <item>
      <title>Re: Scan Report pogram</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/scan-report-pogram/m-p/6320340#M1394375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use this Report:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;RPR_ABAP_SOURCE_SCAN&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2009 07:16:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/scan-report-pogram/m-p/6320340#M1394375</guid>
      <dc:creator>former_member222860</dc:creator>
      <dc:date>2009-10-29T07:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: Scan Report pogram</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/scan-report-pogram/m-p/6320341#M1394376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;and how would you specify that it has to look for internal tables NOT starting with 'IT_'?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2009 07:22:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/scan-report-pogram/m-p/6320341#M1394376</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2009-10-29T07:22:07Z</dc:date>
    </item>
    <item>
      <title>Re: Scan Report pogram</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/scan-report-pogram/m-p/6320342#M1394377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thats why even i dint suggest RPR_ABAP_SOURCE_SCAN. Lets see what Gautam has to say&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2009 07:31:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/scan-report-pogram/m-p/6320342#M1394377</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-29T07:31:28Z</dc:date>
    </item>
    <item>
      <title>Re: Scan Report pogram</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/scan-report-pogram/m-p/6320343#M1394378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Internal tables data declarations start with "begin of"or have a statement with "occurs" in the data declaration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can scan your report(s) on those statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards, Léon Hoeneveld&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2009 09:08:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/scan-report-pogram/m-p/6320343#M1394378</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-29T09:08:31Z</dc:date>
    </item>
    <item>
      <title>Re: Scan Report pogram</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/scan-report-pogram/m-p/6320344#M1394379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not if you first declare table types and then declare the internal tables referencing the table types.&lt;/P&gt;&lt;P&gt;What the OP wants to do might be covered by the code inspector naming convention check, tx SCI.&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2009 09:29:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/scan-report-pogram/m-p/6320344#M1394379</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2009-10-29T09:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: Scan Report pogram</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/scan-report-pogram/m-p/6320345#M1394380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;report  &lt;STRONG&gt;RS_ABAP_SOURCE_SCAN&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Nov 2009 11:43:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/scan-report-pogram/m-p/6320345#M1394380</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-02T11:43:44Z</dc:date>
    </item>
    <item>
      <title>Re: Scan Report pogram</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/scan-report-pogram/m-p/6320346#M1394381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As Thomas pointed out:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Use the code inspector&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Nov 2009 12:28:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/scan-report-pogram/m-p/6320346#M1394381</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2009-11-02T12:28:52Z</dc:date>
    </item>
  </channel>
</rss>

