<?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 reports in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/3835092#M922206</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. if i gave 3 on initialization and i gave 7 as selection value then which value process on output?&lt;/P&gt;&lt;P&gt;2 when will write the hide statement in report program?&lt;/P&gt;&lt;P&gt;3.how can get the every fifth record from internal table?&lt;/P&gt;&lt;P&gt;4. i have emp name and emp salary now i wantthe theird height salary how can i get?&lt;/P&gt;&lt;P&gt;5.what is the use of end of select statment?&lt;/P&gt;&lt;P&gt;6. without declaring start-of-selection i write the initialization ans at selection screen field then what happend?&lt;/P&gt;&lt;P&gt;6. what have done commit on selection screen declaration?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 May 2008 12:36:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-21T12:36:01Z</dc:date>
    <item>
      <title>reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/3835092#M922206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. if i gave 3 on initialization and i gave 7 as selection value then which value process on output?&lt;/P&gt;&lt;P&gt;2 when will write the hide statement in report program?&lt;/P&gt;&lt;P&gt;3.how can get the every fifth record from internal table?&lt;/P&gt;&lt;P&gt;4. i have emp name and emp salary now i wantthe theird height salary how can i get?&lt;/P&gt;&lt;P&gt;5.what is the use of end of select statment?&lt;/P&gt;&lt;P&gt;6. without declaring start-of-selection i write the initialization ans at selection screen field then what happend?&lt;/P&gt;&lt;P&gt;6. what have done commit on selection screen declaration?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 12:36:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/3835092#M922206</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T12:36:01Z</dc:date>
    </item>
    <item>
      <title>Re: reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/3835093#M922207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do I use the search function?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 12:37:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/3835093#M922207</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T12:37:52Z</dc:date>
    </item>
    <item>
      <title>Re: reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/3835094#M922208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chakri,&lt;/P&gt;&lt;P&gt;Find below ans.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. if i gave 3 on initialization and i gave 7 as selection value then which value process on output?&lt;/P&gt;&lt;P&gt;ans is 7. Because what ever values given in initialization will be over written if u change the value after the selection screen is displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2 when will write the hide statement in report program?&lt;/P&gt;&lt;P&gt;It is used in interactive reports to get the field value of the output list on which u clicked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.how can get the every fifth record from internal table?&lt;/P&gt;&lt;P&gt;LOOP AT itab&lt;/P&gt;&lt;P&gt;l_index = sy-index MOD 5.&lt;/P&gt;&lt;P&gt;IF l_index = 0.&lt;/P&gt;&lt;P&gt;it is 5th 10th 15th.... record.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. i have emp name and emp salary now i wantthe theird height salary how can i get?&lt;/P&gt;&lt;P&gt;SORT itab BY sal.&lt;/P&gt;&lt;P&gt;READ itab INDEX 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5.what is the use of end of select statment?&lt;/P&gt;&lt;P&gt;Is it &lt;STRONG&gt;endselect or END-OF-SELECTION?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Endselect-it is statement. If u r using select end select then u have to use it. i.e fetching and processing the data record by record.&lt;/P&gt;&lt;P&gt;END-OF-SELECTIOn-It is event. All ur data prosessing and writing data to output list will be done under this event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. without declaring start-of-selection i write the initialization ans at selection screen field then what happend?&lt;/P&gt;&lt;P&gt;None of the events is mandatory. But it is good practice to use the all possible events as it improves readability and maintainability of code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7. what have done commit on selection screen declaration?&lt;/P&gt;&lt;P&gt;Can u be more clear on this question?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 12:52:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/3835094#M922208</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-05-21T12:52:57Z</dc:date>
    </item>
  </channel>
</rss>

