<?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: Problem in Back Button in ALV report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-back-button-in-alv-report/m-p/4530397#M1070773</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Use this statements and try "Leave Program" or Set screen 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Oct 2008 13:39:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-01T13:39:17Z</dc:date>
    <item>
      <title>Problem in Back Button in ALV report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-back-button-in-alv-report/m-p/4530392#M1070768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Team, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created a report which has a selection screen. Based on the input I am showing an ALV OO grid in my custom screen 0100. Now In the system toolbar on my 0100 screen I have enabled back, up and exit button. On click of which I am wrting 'LEAVE TO SCREEN 0. ' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it doesn't take me to the selection screen. Rather it throws me out of the transaction. Can anybody&lt;/P&gt;&lt;P&gt;suggest me a command so that when I click on back button it will take to the selection screen. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mainak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 12:45:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-back-button-in-alv-report/m-p/4530392#M1070768</guid>
      <dc:creator>former_member224404</dc:creator>
      <dc:date>2008-10-01T12:45:08Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Back Button in ALV report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-back-button-in-alv-report/m-p/4530393#M1070769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;r u using submit command inthis alv&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 12:48:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-back-button-in-alv-report/m-p/4530393#M1070769</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-01T12:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Back Button in ALV report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-back-button-in-alv-report/m-p/4530394#M1070770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you use CALL SCREEN 0100 then it will work. but in your case you are not using call screen i guess.&lt;/P&gt;&lt;P&gt;are you using set screen , leave screen/ leave to screen 100&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;end-of-selection.
call screen 100. "try this and see..&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 12:49:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-back-button-in-alv-report/m-p/4530394#M1070770</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-01T12:49:40Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Back Button in ALV report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-back-button-in-alv-report/m-p/4530395#M1070771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Go through given program it is very usefull for you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***Correct your program as follows...&lt;/P&gt;&lt;P&gt;PROGRAM rsolett1 MESSAGE-ID sy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS: slis.&lt;/P&gt;&lt;P&gt;data: repid like sy-repid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: w_fieldcat TYPE slis_fieldcat_alv,&lt;/P&gt;&lt;P&gt;t_fieldcat TYPE slis_t_fieldcat_alv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: w_listheader TYPE slis_listheader,&lt;/P&gt;&lt;P&gt;t_listheader TYPE slis_t_listheader.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF t_output OCCURS 0,&lt;/P&gt;&lt;P&gt;slno TYPE char10,&lt;/P&gt;&lt;P&gt;name TYPE char10,&lt;/P&gt;&lt;P&gt;lino TYPE char10,&lt;/P&gt;&lt;P&gt;prof TYPE char10,&lt;/P&gt;&lt;P&gt;addr TYPE char10,&lt;/P&gt;&lt;P&gt;fanm TYPE char10,&lt;/P&gt;&lt;P&gt;plbu TYPE char10,&lt;/P&gt;&lt;P&gt;END OF t_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_fieldcat-col_pos = 1.&lt;/P&gt;&lt;P&gt;w_fieldcat-fieldname = 'SLNO'.&lt;/P&gt;&lt;P&gt;w_fieldcat-seltext_m = 'SERIAL NUMBER'.&lt;/P&gt;&lt;P&gt;APPEND w_fieldcat TO t_fieldcat.&lt;/P&gt;&lt;P&gt;CLEAR w_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_fieldcat-col_pos = 2.&lt;/P&gt;&lt;P&gt;w_fieldcat-fieldname = 'NAME'.&lt;/P&gt;&lt;P&gt;w_fieldcat-seltext_m = 'NAME'.&lt;/P&gt;&lt;P&gt;APPEND w_fieldcat TO t_fieldcat.&lt;/P&gt;&lt;P&gt;CLEAR w_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_fieldcat-col_pos = 3.&lt;/P&gt;&lt;P&gt;w_fieldcat-fieldname = 'LINO'.&lt;/P&gt;&lt;P&gt;w_fieldcat-seltext_m = 'LICENCE NUMBER'.&lt;/P&gt;&lt;P&gt;APPEND w_fieldcat TO t_fieldcat.&lt;/P&gt;&lt;P&gt;CLEAR w_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_fieldcat-col_pos = 4.&lt;/P&gt;&lt;P&gt;w_fieldcat-fieldname = 'PROF'.&lt;/P&gt;&lt;P&gt;w_fieldcat-seltext_m = 'PROFESSION'.&lt;/P&gt;&lt;P&gt;APPEND w_fieldcat TO t_fieldcat.&lt;/P&gt;&lt;P&gt;CLEAR w_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_fieldcat-col_pos = 5.&lt;/P&gt;&lt;P&gt;w_fieldcat-fieldname = 'ADDR'.&lt;/P&gt;&lt;P&gt;w_fieldcat-seltext_m = 'ADDRESS'.&lt;/P&gt;&lt;P&gt;w_fieldcat-do_sum = 'X'.&lt;/P&gt;&lt;P&gt;APPEND w_fieldcat TO t_fieldcat.&lt;/P&gt;&lt;P&gt;CLEAR w_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_fieldcat-col_pos = 6.&lt;/P&gt;&lt;P&gt;w_fieldcat-fieldname = 'FANM'.&lt;/P&gt;&lt;P&gt;w_fieldcat-seltext_m = 'FATHER NAME'.&lt;/P&gt;&lt;P&gt;APPEND w_fieldcat TO t_fieldcat.&lt;/P&gt;&lt;P&gt;CLEAR w_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_fieldcat-col_pos = 7.&lt;/P&gt;&lt;P&gt;w_fieldcat-fieldname = 'PLBU'.&lt;/P&gt;&lt;P&gt;w_fieldcat-seltext_m = 'PLACE OF BUSSINESS'.&lt;/P&gt;&lt;P&gt;APPEND w_fieldcat TO t_fieldcat.&lt;/P&gt;&lt;P&gt;CLEAR w_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*PUPULATING TOP-OF-PAGE.&lt;/P&gt;&lt;P&gt;w_listheader-typ = 'H'.&lt;/P&gt;&lt;P&gt;w_listheader-info = 'FORMA'.&lt;/P&gt;&lt;P&gt;APPEND w_listheader TO t_listheader.&lt;/P&gt;&lt;P&gt;CLEAR w_listheader.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;repid = sy-repid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;i_callback_program = repid&lt;/P&gt;&lt;P&gt;i_callback_pf_status_set = 'SET_PF_STATUS'&lt;/P&gt;&lt;P&gt;i_callback_user_command = ' '&lt;/P&gt;&lt;P&gt;i_callback_top_of_page = 'SUB_TOP_OF_PAGE'&lt;/P&gt;&lt;P&gt;it_fieldcat = t_fieldcat&lt;/P&gt;&lt;P&gt;i_default = 'X'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;t_outtab = t_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM set_pf_status USING rt_extab TYPE slis_t_extab.&lt;/P&gt;&lt;P&gt;SET PF-STATUS '&lt;STRONG&gt;ZPFSTATUS&lt;/STRONG&gt;'.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Ganesh Modhave on Aug 12, 2008 1:06 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&amp;amp;Regards,&lt;/P&gt;&lt;P&gt;Naresh kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 12:53:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-back-button-in-alv-report/m-p/4530395#M1070771</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-01T12:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Back Button in ALV report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-back-button-in-alv-report/m-p/4530396#M1070772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Edited by: Ganesh Modhave on Aug 12, 2008 1:06 PM&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Thanks&amp;amp;Regards,&lt;/P&gt;&lt;P&gt;&amp;gt; Naresh kumar&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;So that's Ganesh's code... right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you do this once more, your user ID will be deleted.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 13:37:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-back-button-in-alv-report/m-p/4530396#M1070772</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-01T13:37:02Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Back Button in ALV report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-back-button-in-alv-report/m-p/4530397#M1070773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Use this statements and try "Leave Program" or Set screen 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 13:39:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-back-button-in-alv-report/m-p/4530397#M1070773</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-01T13:39:17Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Back Button in ALV report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-back-button-in-alv-report/m-p/4530398#M1070774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are right! I was using set screen. Now I am using call screen and it worked!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!!&lt;/P&gt;&lt;P&gt;Mainak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 15:54:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-back-button-in-alv-report/m-p/4530398#M1070774</guid>
      <dc:creator>former_member224404</dc:creator>
      <dc:date>2008-10-01T15:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Back Button in ALV report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-back-button-in-alv-report/m-p/4530399#M1070775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Julius,&lt;/P&gt;&lt;P&gt;Surprise that was my code. &lt;/P&gt;&lt;P&gt;Hee Naresh is it really helped you ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!!&lt;/P&gt;&lt;P&gt;Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2008 16:02:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-back-button-in-alv-report/m-p/4530399#M1070775</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-23T16:02:34Z</dc:date>
    </item>
  </channel>
</rss>

