<?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: Back Function key is not working in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-function-key-is-not-working/m-p/6156928#M1369498</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;in 'standard' status for 'back' icon have add &amp;amp;f03 as function key ,check it first.&lt;/P&gt;&lt;P&gt;and then in the initialization write the code 'set pf-status 'standard'.&lt;/P&gt;&lt;P&gt;and under start-of-selection.&lt;/P&gt;&lt;P&gt;write set pf status space.(it will enables all the standard buttons back,cancle,exit...).&lt;/P&gt;&lt;P&gt;now if u click on back it should wor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try it once.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u have created a button for back and assigned say 'back' code for that, then go like this.&lt;/P&gt;&lt;P&gt;start of selection.&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;if sy-ucomm = 'BACK'.&lt;/P&gt;&lt;P&gt;LEAVE LIST PROCESSING.&lt;/P&gt;&lt;P&gt;(OR U CAN WRITE LEAVE PROGRAM OR LEAVE TO SCREEN 0).&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 10 Oct 2009 10:23:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-10-10T10:23:53Z</dc:date>
    <item>
      <title>Back Function key is not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-function-key-is-not-working/m-p/6156924#M1369494</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have created report programing. and also add buttons to application tool bar using transaction 'SE41'. &lt;/P&gt;&lt;P&gt;But in this case whenever I  run program  and click on Back.it is asking me to populate fields. &lt;/P&gt;&lt;P&gt;Even after populating fields  and  clicking Back wont take me to BACK screen... &lt;/P&gt;&lt;P&gt;It is asking for  'Put  cusron on selection'.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Back is standard tool bar even why it is not working. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I  set status as below. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**Variant &lt;/P&gt;&lt;P&gt;INITIALIZATION. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**Initialize Report Global Variables &lt;/P&gt;&lt;P&gt;  PERFORM f_initialize_report. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SET PF-STATUS 'STANDARD' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally i write code for back function as follws.bUt I  don't want this transaction.I want back screen. &lt;/P&gt;&lt;P&gt;I am submitting this report via ALV grid display from other program(By double clicking row).When i press Back it should show alv display. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CASE sy-ucomm. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      WHEN '&amp;amp;F03'. &lt;/P&gt;&lt;P&gt;              LEAVE to transaction 'ZCM_SEARCH_RULE'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Oct 2009 07:22:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-function-key-is-not-working/m-p/6156924#M1369494</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-09T07:22:45Z</dc:date>
    </item>
    <item>
      <title>Re: Back Function key is not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-function-key-is-not-working/m-p/6156925#M1369495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;set pf-status 'STANDARD'&lt;/STRONG&gt; "I think this is not required.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First of all how did you create it without 'Z' prefix ???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use at user-command for processing button click events in normal reporting.&lt;/P&gt;&lt;P&gt;in module pool use PAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Keshu Thekkillam on Oct 9, 2009 1:10 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Oct 2009 07:38:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-function-key-is-not-working/m-p/6156925#M1369495</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2009-10-09T07:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: Back Function key is not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-function-key-is-not-working/m-p/6156926#M1369496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have created GUI status 'STANDARD"  using SE41  for report program .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Oct 2009 07:46:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-function-key-is-not-working/m-p/6156926#M1369496</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-09T07:46:40Z</dc:date>
    </item>
    <item>
      <title>Re: Back Function key is not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-function-key-is-not-working/m-p/6156927#M1369497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When calling program use&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SUBMIT z_myprog VIA SELECTION-SCREEN AND RETURN.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in called program use&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
INITIALIZATION.
 set PF-STATUS 'MY_STATUS'.

AT SELECTION-SCREEN.
  if sy-ucomm = 'BACK'.
    LEAVE TO SCREEN 0.
  endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Oct 2009 09:42:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-function-key-is-not-working/m-p/6156927#M1369497</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2009-10-09T09:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: Back Function key is not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-function-key-is-not-working/m-p/6156928#M1369498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;in 'standard' status for 'back' icon have add &amp;amp;f03 as function key ,check it first.&lt;/P&gt;&lt;P&gt;and then in the initialization write the code 'set pf-status 'standard'.&lt;/P&gt;&lt;P&gt;and under start-of-selection.&lt;/P&gt;&lt;P&gt;write set pf status space.(it will enables all the standard buttons back,cancle,exit...).&lt;/P&gt;&lt;P&gt;now if u click on back it should wor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try it once.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u have created a button for back and assigned say 'back' code for that, then go like this.&lt;/P&gt;&lt;P&gt;start of selection.&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;if sy-ucomm = 'BACK'.&lt;/P&gt;&lt;P&gt;LEAVE LIST PROCESSING.&lt;/P&gt;&lt;P&gt;(OR U CAN WRITE LEAVE PROGRAM OR LEAVE TO SCREEN 0).&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Oct 2009 10:23:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-function-key-is-not-working/m-p/6156928#M1369498</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-10T10:23:53Z</dc:date>
    </item>
    <item>
      <title>Re: Back Function key is not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-function-key-is-not-working/m-p/6156929#M1369499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt; will you plz explian&lt;/P&gt;&lt;P&gt;what means of following line&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write set pf status space.(it will enables all the standard buttons back,cancle,exit...).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is it like &lt;/P&gt;&lt;P&gt;set pf status ' '.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2009 07:09:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-function-key-is-not-working/m-p/6156929#M1369499</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-15T07:09:45Z</dc:date>
    </item>
  </channel>
</rss>

