<?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: not getting the selection screen on back button in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-getting-the-selection-screen-on-back-button/m-p/4736375#M1111347</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Navneet,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tahnk you very much.&lt;/P&gt;&lt;P&gt;I have done it. But its not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Deepa Kulkarni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Nov 2008 11:47:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-06T11:47:07Z</dc:date>
    <item>
      <title>not getting the selection screen on back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-getting-the-selection-screen-on-back-button/m-p/4736371#M1111343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement wherein I am displaying the list of orders using ALV and when I click on perticular order,  I am calling Z.25 transaction for that order using the SUBMIT command which is as below.&lt;/P&gt;&lt;P&gt;SUBMIT rvkrpr002 VIA SELECTION-SCREEN&lt;/P&gt;&lt;P&gt;	WITH vkorg in s_vkorg&lt;/P&gt;&lt;P&gt;	WITH s_vbeln in r_vbeln&lt;/P&gt;&lt;P&gt;	WITH ernam = SPACE&lt;/P&gt;&lt;P&gt;	AND RETURN.&lt;/P&gt;&lt;P&gt;Above code is working fine to call the transaction v.25.&lt;/P&gt;&lt;P&gt;But when I click on u201Cbacku201D button control is going back to transaction SE38.&lt;/P&gt;&lt;P&gt;Can anyone help me to come back to the selection-screen of  V.25 after I press the Back button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Deepa Kulkarni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2008 11:39:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-getting-the-selection-screen-on-back-button/m-p/4736371#M1111343</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-06T11:39:51Z</dc:date>
    </item>
    <item>
      <title>Re: not getting the selection screen on back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-getting-the-selection-screen-on-back-button/m-p/4736372#M1111344</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;Try moving "AND RETURN." addition to SUBMIT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Navneeth K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2008 11:43:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-getting-the-selection-screen-on-back-button/m-p/4736372#M1111344</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-06T11:43:01Z</dc:date>
    </item>
    <item>
      <title>Re: not getting the selection screen on back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-getting-the-selection-screen-on-back-button/m-p/4736373#M1111345</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;Use the following code under the user command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;when 'back'
LEAVE TO SCREEN 0.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nandha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2008 11:44:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-getting-the-selection-screen-on-back-button/m-p/4736373#M1111345</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-06T11:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: not getting the selection screen on back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-getting-the-selection-screen-on-back-button/m-p/4736374#M1111346</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;Thank you very much for your reply, i ahve tried this but its not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Deepa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2008 11:46:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-getting-the-selection-screen-on-back-button/m-p/4736374#M1111346</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-06T11:46:01Z</dc:date>
    </item>
    <item>
      <title>Re: not getting the selection screen on back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-getting-the-selection-screen-on-back-button/m-p/4736375#M1111347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Navneet,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tahnk you very much.&lt;/P&gt;&lt;P&gt;I have done it. But its not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Deepa Kulkarni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2008 11:47:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-getting-the-selection-screen-on-back-button/m-p/4736375#M1111347</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-06T11:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: not getting the selection screen on back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-getting-the-selection-screen-on-back-button/m-p/4736376#M1111348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi You wan to come to selection screen of called transaction or the calling program selection screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2008 11:48:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-getting-the-selection-screen-on-back-button/m-p/4736376#M1111348</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-06T11:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: not getting the selection screen on back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-getting-the-selection-screen-on-back-button/m-p/4736377#M1111349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to come to the selection screen of called transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Deepa Kulkarni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2008 11:51:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-getting-the-selection-screen-on-back-button/m-p/4736377#M1111349</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-06T11:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: not getting the selection screen on back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-getting-the-selection-screen-on-back-button/m-p/4736378#M1111350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the called transaction code. Since i cannot see vbeln on v.25&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2008 11:52:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-getting-the-selection-screen-on-back-button/m-p/4736378#M1111350</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-06T11:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: not getting the selection screen on back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-getting-the-selection-screen-on-back-button/m-p/4736379#M1111351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Transaction is V.25 only its for customer expected price release.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Deepa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2008 11:54:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-getting-the-selection-screen-on-back-button/m-p/4736379#M1111351</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-06T11:54:31Z</dc:date>
    </item>
    <item>
      <title>Re: not getting the selection screen on back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-getting-the-selection-screen-on-back-button/m-p/4736380#M1111352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It doesnt contain VBELN on screen.&lt;/P&gt;&lt;P&gt;In which SAP version are you working.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2008 11:55:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-getting-the-selection-screen-on-back-button/m-p/4736380#M1111352</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-06T11:55:54Z</dc:date>
    </item>
    <item>
      <title>Re: not getting the selection screen on back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-getting-the-selection-screen-on-back-button/m-p/4736381#M1111353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am passing Sales Organization to the V.25 transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Deepa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2008 12:00:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-getting-the-selection-screen-on-back-button/m-p/4736381#M1111353</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-06T12:00:05Z</dc:date>
    </item>
    <item>
      <title>Re: not getting the selection screen on back button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-getting-the-selection-screen-on-back-button/m-p/4736382#M1111354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;version used is 4.7&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Deepa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2008 12:05:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-getting-the-selection-screen-on-back-button/m-p/4736382#M1111354</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-06T12:05:47Z</dc:date>
    </item>
  </channel>
</rss>

