<?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 AlV back button in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-back-button/m-p/1915668#M380878</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;Iam woking on a ALV report where I have provided check boxes for user to select deslect sales orders .&lt;/P&gt;&lt;P&gt; when user first selects and deselects records and click back button it is coming to the screen with  check boxes selected and then to my selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried using leave to screen 1000. but when i click on that back buton its not leaving the program where as going ALV out put.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tried using leave program. But user needs to come to selection screen after clicking back insted os leaving the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Very urgent Please help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 24 Feb 2007 00:26:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-24T00:26:11Z</dc:date>
    <item>
      <title>AlV back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-back-button/m-p/1915668#M380878</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;Iam woking on a ALV report where I have provided check boxes for user to select deslect sales orders .&lt;/P&gt;&lt;P&gt; when user first selects and deselects records and click back button it is coming to the screen with  check boxes selected and then to my selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried using leave to screen 1000. but when i click on that back buton its not leaving the program where as going ALV out put.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tried using leave program. But user needs to come to selection screen after clicking back insted os leaving the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Very urgent Please help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Feb 2007 00:26:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-back-button/m-p/1915668#M380878</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-24T00:26:11Z</dc:date>
    </item>
    <item>
      <title>Re: AlV back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-back-button/m-p/1915669#M380879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try using leave to screen 0. &lt;/P&gt;&lt;P&gt;and submit ABAP_PROGRAM_NAME. it will take user to the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this will help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ashwani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Feb 2007 00:30:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-back-button/m-p/1915669#M380879</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-24T00:30:00Z</dc:date>
    </item>
    <item>
      <title>Re: AlV back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-back-button/m-p/1915670#M380880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;MODULE user_command_9001 INPUT.
 
  CASE sy-ucomm.
    WHEN 'BACK'.
 SET SCREEN '0'
OR 
LEAVE PROGRAM.
   WHEN 'EXIT' OR  'CANC'.
      PERFORM exit_program.
      LEAVE PROGRAM.
  ENDCASE.
 
ENDMODULE.                 &amp;#147;USER_COMMAND_9000 INPUT&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Feb 2007 04:42:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-back-button/m-p/1915670#M380880</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-24T04:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: AlV back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-back-button/m-p/1915671#M380881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the BACK button is in the toolbar of ALV container then proceed as follows&lt;/P&gt;&lt;P&gt;Assume u r code is as below&lt;/P&gt;&lt;P&gt;CLASS c1 DEFINITION.&lt;/P&gt;&lt;P&gt;  PUBLIC SECTION.&lt;/P&gt;&lt;P&gt;    METHODS:&lt;/P&gt;&lt;P&gt;    toolbar FOR EVENT toolbar OF cl_gui_alv_grid IMPORTING e_object&lt;/P&gt;&lt;P&gt;             e_interactive,&lt;/P&gt;&lt;P&gt;  user_command FOR EVENT user_command OF cl_gui_alv_grid IMPORTING&lt;/P&gt;&lt;P&gt;             e_ucomm.&lt;/P&gt;&lt;P&gt;ENDCLASS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS c1 IMPLEMENTATION.&lt;/P&gt;&lt;P&gt;  METHOD toolbar.&lt;/P&gt;&lt;P&gt;    DATA: ls_toolbar  TYPE stb_button.&lt;/P&gt;&lt;P&gt;    CLEAR ls_toolbar.&lt;/P&gt;&lt;P&gt;    MOVE 'BACK' TO ls_toolbar-function.&lt;/P&gt;&lt;P&gt;    MOVE 'BACK' TO ls_toolbar-text.&lt;/P&gt;&lt;P&gt;    MOVE ' ' TO ls_toolbar-disabled.&lt;/P&gt;&lt;P&gt;    APPEND ls_toolbar TO e_object-&amp;gt;mt_toolbar.&lt;/P&gt;&lt;P&gt; ENDMETHOD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; METHOD user_command.&lt;/P&gt;&lt;P&gt; &amp;lt;b&amp;gt;  CASE e_ucomm.&lt;/P&gt;&lt;P&gt;    WHEN 'BACK'.&lt;/P&gt;&lt;P&gt;        LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;    ENDCASE.&lt;/P&gt;&lt;P&gt;&amp;lt;/b&amp;gt;  ENDMETHOD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the BACK button is outside the container then proceed as follows&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;MODULE user_command_0100 INPUT.&lt;/P&gt;&lt;P&gt;  CASE sy-ucomm.&lt;/P&gt;&lt;P&gt;    WHEN 'EXIT'.&lt;/P&gt;&lt;P&gt;      LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " USER_COMMAND_0100  INPUT&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Feb 2007 06:22:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-back-button/m-p/1915671#M380881</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-24T06:22:58Z</dc:date>
    </item>
  </channel>
</rss>

