<?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: Read Report Statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-report-statement/m-p/5328183#M1227872</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i am using ALV grid display.. I need to move the text into one Itab-text field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after read report statement i put the move statement but it was creating another record in itab,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;help me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Mar 2009 09:45:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-17T09:45:08Z</dc:date>
    <item>
      <title>Read Report Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-report-statement/m-p/5328176#M1227865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I hope you all are doing fine..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need your help..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to used read report statement for reading reports and I want make a list of reports which coding is commented. and second list of reports which coding in uncommented...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone tell me. how can i find out the coding is commented or not?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2009 05:50:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-report-statement/m-p/5328176#M1227865</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-17T05:50:42Z</dc:date>
    </item>
    <item>
      <title>Re: Read Report Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-report-statement/m-p/5328177#M1227866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can load the report into internal table.&lt;/P&gt;&lt;P&gt;1. If first character is "*" then line is commented.&lt;/P&gt;&lt;P&gt;2. If first non blank character is """ (double Quote) then that line is also commented.&lt;/P&gt;&lt;P&gt;This logic you can use to break the report into commented part and actual code part.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2009 05:55:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-report-statement/m-p/5328177#M1227866</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-17T05:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: Read Report Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-report-statement/m-p/5328178#M1227867</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 the keyword SCAN and you can achieve it.&lt;/P&gt;&lt;P&gt;once when you get all the data into an internal table use this keyword&lt;/P&gt;&lt;P&gt;you have option &lt;STRONG&gt;with comments&lt;/STRONG&gt; in this this will get you the commented lines&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;refer this link: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[SCAN|http://help.sap.com/abapdocu/en/ABAPSCAN.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;sarves&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2009 05:56:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-report-statement/m-p/5328178#M1227867</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-17T05:56:44Z</dc:date>
    </item>
    <item>
      <title>Re: Read Report Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-report-statement/m-p/5328179#M1227868</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;If the line is started with '*' then it indicates as a comment, this line wont be executed.&lt;/P&gt;&lt;P&gt;when you commented the code in se38 program, those block of code will be displayed in the blue color&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ramakrishna Pathi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2009 06:01:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-report-statement/m-p/5328179#M1227868</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-17T06:01:30Z</dc:date>
    </item>
    <item>
      <title>Re: Read Report Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-report-statement/m-p/5328180#M1227869</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;     If you want to check list of programs at a time then replace parameter with select-options and do the required changes. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;*======================================================================*
*  Program Name: YSAT_TEST2                                          *
*----------------------------------------------------------------------*
* Original MOC#: SCN                                                *
*        Author: SATYASURESH DONEPUDI                                  *
* Creation Date: 03/17/2009                                            *
*   Transaction:                                                       *
*----------------------------------------------------------------------*
*   Description: To know any of the program lines commented or not
*======================================================================*

REPORT  YSAT_TEST2.

tables : d010sinf.
types : begin of ty_source,
              prog like d010sinf-prog,
        end of ty_source.
types : begin of ty_out,
              lines(300) type c,
        end of ty_out.

data : it_source type standard table of ty_source with header line.
data : it_out type standard table of ty_out with header line.

parameters : pr_opt(10) type c. " Program Name
break-point.

select prog from d010sinf
       into corresponding fields of table it_source
       where d010sinf~prog like pr_opt.

read table it_source index 1.

*-Get the code
read report it_source-prog into it_out.

loop at it_out.
    if it_out-lines(1) = '*'.
       write: /10
       'some of the program lines were commented in the program:',
                                                        it_source-prog.
       exit.
    endif.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;~Satya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2009 06:14:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-report-statement/m-p/5328180#M1227869</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-17T06:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: Read Report Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-report-statement/m-p/5328181#M1227870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use this Std Report&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;RPR_ABAP_SOURCE_SCAN&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the search criteria , give string as **&lt;/P&gt;&lt;P&gt;U'll see the comment lines.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2009 06:27:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-report-statement/m-p/5328181#M1227870</guid>
      <dc:creator>former_member222860</dc:creator>
      <dc:date>2009-03-17T06:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: Read Report Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-report-statement/m-p/5328182#M1227871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;    Try if u can do it with "Read Textpool......"&lt;/P&gt;&lt;P&gt;    I am actually not sure abt it, but u can try.&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thabks and Regards&lt;/P&gt;&lt;P&gt;Suraj S Nair.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2009 09:32:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-report-statement/m-p/5328182#M1227871</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-17T09:32:52Z</dc:date>
    </item>
    <item>
      <title>Re: Read Report Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-report-statement/m-p/5328183#M1227872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i am using ALV grid display.. I need to move the text into one Itab-text field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after read report statement i put the move statement but it was creating another record in itab,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;help me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2009 09:45:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-report-statement/m-p/5328183#M1227872</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-17T09:45:08Z</dc:date>
    </item>
    <item>
      <title>Re: Read Report Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-report-statement/m-p/5328184#M1227873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Solved..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2009 04:47:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-report-statement/m-p/5328184#M1227873</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-25T04:47:55Z</dc:date>
    </item>
  </channel>
</rss>

