<?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: leave-to-list processing ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/leave-to-list-processing/m-p/3104547#M736874</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its also used along with the statement  SUPRESS DIALOG when you plan to call list from a dialog program ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saket Sharma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Nov 2007 15:02:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-26T15:02:47Z</dc:date>
    <item>
      <title>leave-to-list processing ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/leave-to-list-processing/m-p/3104545#M736872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is leave-to-list-processing ?why r u using this in reports ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 14:36:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/leave-to-list-processing/m-p/3104545#M736872</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T14:36:37Z</dc:date>
    </item>
    <item>
      <title>Re: leave-to-list processing ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/leave-to-list-processing/m-p/3104546#M736873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is used when we directly want to go to LIST from certain point in the report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  IF ITAB[] IS INITIAL.
    LEAVE TO LIST-PROCESSING.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you haven't processed any write statment before this LEAVE TO .. statement than control will come back to SELECTION SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 14:39:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/leave-to-list-processing/m-p/3104546#M736873</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2007-11-26T14:39:51Z</dc:date>
    </item>
    <item>
      <title>Re: leave-to-list processing ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/leave-to-list-processing/m-p/3104547#M736874</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its also used along with the statement  SUPRESS DIALOG when you plan to call list from a dialog program ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saket Sharma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 15:02:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/leave-to-list-processing/m-p/3104547#M736874</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T15:02:47Z</dc:date>
    </item>
    <item>
      <title>Re: leave-to-list processing ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/leave-to-list-processing/m-p/3104548#M736875</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;Each screen in a screen sequence has a corresponding list system of twenty levels. You can start this list system using the &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEAVE TO LIST-PROCESSING [AND RETURN TO SCREEN &amp;lt;dynnr&amp;gt;].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;statement. This statement calls a system program that contains the standard container screen used for lists. This replaces the current screen. On this screen, you can display a basic list and up to 19 detail lists. List processing (reacting to user actions in list events) takes place in the calling program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can leave the list system using the &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEAVE LIST-PROCESSING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In an executable program, the list system is automatically called after the last reporting event. &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;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 15:03:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/leave-to-list-processing/m-p/3104548#M736875</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T15:03:02Z</dc:date>
    </item>
    <item>
      <title>Re: leave-to-list processing ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/leave-to-list-processing/m-p/3104549#M736876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Akash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEAVE TO LIST-PROCESSING  AND RETURN TO SCREEN scr. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Switches from "dialog processing" (module pool, screens) of the current transaction to "list processing". You can then use all the usual list layout commands ( WRITE , SKIP , ...). &lt;/P&gt;&lt;P&gt;After leaving the current screen, the list formatted in this way is displayed implicitly or explicitly by LEAVE SCREEN . Here, all list programming options are possible, e.g. line selection, F keys , windows. &lt;/P&gt;&lt;P&gt;LEAVE LIST-PROCESSING continues with "Processing Before Output" ( PBO ) of the screen which controls the list processing. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After switching to list processing mode with SET PF-STATUS ... , you are recommended to define a GUI (Graphical User Interface) of type List or List in dialog box . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The AND RETURN TO SCREEN scr will do LEAVE LIST-PROCESSING continues with "Processing Before Output" ( PBO ) of the screen scr. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using LEAVE LIST-PROCESSING to leave list processing explicitly is only necessary in exceptional cases; normally, the standard F keys (F3 Back and F15 Exit ) are sufficient. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 15:25:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/leave-to-list-processing/m-p/3104549#M736876</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T15:25:23Z</dc:date>
    </item>
  </channel>
</rss>

