<?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: ALV in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/2354753#M520150</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Interactive Report Events:&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION : This Event triggers when we double click a line on the list, when the event is triggered a new sublist is going to be generated. Under this event what ever the statements that are been return will be displayed on newly generated sublist.&lt;/P&gt;&lt;P&gt;AT PFn: For predefined function keys...&lt;/P&gt;&lt;P&gt;AT USER-COMMAND : It provides user functions keys.&lt;/P&gt;&lt;P&gt;STOP. &lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;Cancels all data selection. No further tables are read. &lt;/P&gt;&lt;P&gt;STOP is followed immediately by the END-OF-SELECTION processing. If you do not want this, you may have to use EXIT instead. &lt;/P&gt;&lt;P&gt;EXIT. &lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;In loop structures: &lt;/P&gt;&lt;P&gt;Leaves the loop processing (DO , WHILE , LOOP , SELECT ) &lt;/P&gt;&lt;P&gt;In subroutines and other modularization units (but outside loop structures): &lt;/P&gt;&lt;P&gt;Leaves the subroutine or modularization unit (FORM , MODULE , FUNCTION , TOP-OF-PAGE , END-OF-PAGE ) &lt;/P&gt;&lt;P&gt;Outside loop structures and modularization units (report processing): &lt;/P&gt;&lt;P&gt;Cancels the report processing and displays the list &lt;/P&gt;&lt;P&gt;CONTINUE. &lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;Within loop structures like &lt;/P&gt;&lt;P&gt;DO ... ENDDO &lt;/P&gt;&lt;P&gt;WHILE ... ENDWHILE &lt;/P&gt;&lt;P&gt;LOOP ... ENDLOOP &lt;/P&gt;&lt;P&gt;SELECT ... ENDSELECT &lt;/P&gt;&lt;P&gt;CONTINUE terminates the current loop pass, returns the processing to the beginning of the loop and starts the next loop pass, if there is one.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Jun 2007 03:16:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-06T03:16:30Z</dc:date>
    <item>
      <title>ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/2354751#M520148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Give me the alv events for Interactive reporting&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Give details about STOP CONTINUE AND EXIT  in reports&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 14:21:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/2354751#M520148</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T14:21:16Z</dc:date>
    </item>
    <item>
      <title>Re: ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/2354752#M520149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raghavendra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Classical ReportsEdit section&lt;/P&gt;&lt;P&gt;These are the most simple reports. Programmers learn this one first. It is just an output of data using the Write statement inside a loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Classical reports are normal reports. These reports are not having any sub reports. IT IS HAVING ONLY ONE SCREEN/LIST FOR OUTPUT.&lt;/P&gt;&lt;P&gt;Events In Classical Reports.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INTIALIZATION: This event triggers before selection screen display.&lt;/P&gt;&lt;P&gt;AT-SELECTION-SCREEN: This event triggers after proccesing user input still selection screen is in active mode.&lt;/P&gt;&lt;P&gt;START OF SELECTION: Start of selection screen triggers after proceesing selection screen.&lt;/P&gt;&lt;P&gt;END-OF-SELECTION : It is for Logical Database Reporting.&lt;/P&gt;&lt;P&gt;Interactive ReportsEdit section&lt;/P&gt;&lt;P&gt;As the name suggests, the user can Interact with the report. We can have a drill down into the report data. For example, Column one of the report displays the material numbers, and the user feels that he needs some more specific data about the vendor for that material, he can HIDE that data under those material numbers. And when the user clicks the material number, another report (actually sub report/secondary list) which displays the vendor details will be displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We can have a basic list (number starts from 0) and 20 secondary lists (1 to 21). Events associated with Interactive Reports are: 1. AT LINE-SELECTION 2. AT USER-COMMAND 3. AT PF&amp;lt;key&amp;gt; 4. TOP-OF-PAGE DURING LINE-SELECTION. HIDE statement holds the data to be displayed in the secondary list. sy-lisel : contains data of the selected line. sy-lsind : contains the level of report (from 0 to 21)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interactive Report Events:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION : This Event triggers when we double click a line on the list, when the event is triggered a new sublist is going to be generated. Under this event what ever the statements that are been return will be displayed on newly generated sublist.&lt;/P&gt;&lt;P&gt;AT PFn: For predefined function keys...&lt;/P&gt;&lt;P&gt;AT USER-COMMAND : It provides user functions keys.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Events keywords in Reports are&lt;/P&gt;&lt;P&gt;For Classical Reports,&lt;/P&gt;&lt;P&gt;1.Initialization&lt;/P&gt;&lt;P&gt;2. At line-selection&lt;/P&gt;&lt;P&gt;3. Start-of-selection&lt;/P&gt;&lt;P&gt;4.Top-of-page&lt;/P&gt;&lt;P&gt;5. At user-command&lt;/P&gt;&lt;P&gt;6.End-of-selection&lt;/P&gt;&lt;P&gt;7. End-of-page&lt;/P&gt;&lt;P&gt;8.At Pfn&lt;/P&gt;&lt;P&gt;For Interactive Reports,&lt;/P&gt;&lt;P&gt;9.At line-selection 10. Top-of-page during line selection&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;STOP&amp;lt;/b&amp;gt; will go to the end of selection.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;CONTINUE&amp;lt;/b&amp;gt; will skip that Loop pass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Aneesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 14:30:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/2354752#M520149</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T14:30:18Z</dc:date>
    </item>
    <item>
      <title>Re: ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/2354753#M520150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Interactive Report Events:&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION : This Event triggers when we double click a line on the list, when the event is triggered a new sublist is going to be generated. Under this event what ever the statements that are been return will be displayed on newly generated sublist.&lt;/P&gt;&lt;P&gt;AT PFn: For predefined function keys...&lt;/P&gt;&lt;P&gt;AT USER-COMMAND : It provides user functions keys.&lt;/P&gt;&lt;P&gt;STOP. &lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;Cancels all data selection. No further tables are read. &lt;/P&gt;&lt;P&gt;STOP is followed immediately by the END-OF-SELECTION processing. If you do not want this, you may have to use EXIT instead. &lt;/P&gt;&lt;P&gt;EXIT. &lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;In loop structures: &lt;/P&gt;&lt;P&gt;Leaves the loop processing (DO , WHILE , LOOP , SELECT ) &lt;/P&gt;&lt;P&gt;In subroutines and other modularization units (but outside loop structures): &lt;/P&gt;&lt;P&gt;Leaves the subroutine or modularization unit (FORM , MODULE , FUNCTION , TOP-OF-PAGE , END-OF-PAGE ) &lt;/P&gt;&lt;P&gt;Outside loop structures and modularization units (report processing): &lt;/P&gt;&lt;P&gt;Cancels the report processing and displays the list &lt;/P&gt;&lt;P&gt;CONTINUE. &lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;Within loop structures like &lt;/P&gt;&lt;P&gt;DO ... ENDDO &lt;/P&gt;&lt;P&gt;WHILE ... ENDWHILE &lt;/P&gt;&lt;P&gt;LOOP ... ENDLOOP &lt;/P&gt;&lt;P&gt;SELECT ... ENDSELECT &lt;/P&gt;&lt;P&gt;CONTINUE terminates the current loop pass, returns the processing to the beginning of the loop and starts the next loop pass, if there is one.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 03:16:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/2354753#M520150</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T03:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/2354754#M520151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi rahavendra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u write &amp;lt;b&amp;gt;stop&amp;lt;/b&amp;gt; keyword before the end-of-selection after the stop triggers then it dierecly comes to the end of selection, then it goes to the processing logic(ex write statement or alv or loop like that),&lt;/P&gt;&lt;P&gt;where as if its&amp;lt;b&amp;gt; exit&amp;lt;/b&amp;gt; keyword once it reaches the trigger then it come out from the report though u have a end of selection event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONTINUE can come out the particular Loop and then again it process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;seshu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 06:55:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/2354754#M520151</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T06:55:33Z</dc:date>
    </item>
  </channel>
</rss>

