<?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: Small Query in Selection Screen and Screen. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817295#M349792</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For OK_CODE 'BACK'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use statement LEAVE TO SCREEN 0.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 31 Jan 2007 05:51:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-31T05:51:35Z</dc:date>
    <item>
      <title>Small Query in Selection Screen and Screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817293#M349790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Guys...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have Created a program using Selection-Screen 1000. and Screen 2000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At Selection-Screen I have written code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ok_code = sy-ucomm.&lt;/P&gt;&lt;P&gt;  CASE ok_code.&lt;/P&gt;&lt;P&gt;    WHEN 'BACK'.&lt;/P&gt;&lt;P&gt;        LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt; end case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and At the user-command of Screen 2000.&lt;/P&gt;&lt;P&gt;I have written Follow code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ok_code = sy-ucomm.&lt;/P&gt;&lt;P&gt;  CASE ok_code.&lt;/P&gt;&lt;P&gt;    WHEN 'BACK'.&lt;/P&gt;&lt;P&gt;        LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;    when 'CANCEL'.&lt;/P&gt;&lt;P&gt;       LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;    when 'ADD'.&lt;/P&gt;&lt;P&gt;       Perform Add_New_Row.&lt;/P&gt;&lt;P&gt;    when 'REMOVE'.&lt;/P&gt;&lt;P&gt;       Perform DELETE_Row.&lt;/P&gt;&lt;P&gt;    when 'SAVE'.&lt;/P&gt;&lt;P&gt;       Perform SAVE_DATA.&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;...................................................&lt;/P&gt;&lt;P&gt;My Problem is that I am not able to come out from program through back button..&lt;/P&gt;&lt;P&gt;Follow is like that..&lt;/P&gt;&lt;P&gt;at Selection Screen user provide some input on that basis screen 2000 Call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when i press back button on screen 2000 Selection screen 1000 appear.&lt;/P&gt;&lt;P&gt;and my Problem is that when i press back button on selection-screen on 1000.&lt;/P&gt;&lt;P&gt;it's goes to screen 2000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know, it's little thing I am missing, Let me know ..what was that..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers......&lt;/P&gt;&lt;P&gt;Swati...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 05:44:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817293#M349790</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T05:44:47Z</dc:date>
    </item>
    <item>
      <title>Re: Small Query in Selection Screen and Screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817294#M349791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;       I think the problem is when you press back it goes to the event AT SELECTION-SCREEN and there you have call to screen 2000. Check in debug mode if this is happening. If this is the case then handle the function code for BACK at this event AT  SELECTION-SCREEN and put LEAVE TO SCREEN 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 05:48:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817294#M349791</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-01-31T05:48:33Z</dc:date>
    </item>
    <item>
      <title>Re: Small Query in Selection Screen and Screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817295#M349792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For OK_CODE 'BACK'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use statement LEAVE TO SCREEN 0.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 05:51:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817295#M349792</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T05:51:35Z</dc:date>
    </item>
    <item>
      <title>Re: Small Query in Selection Screen and Screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817296#M349793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you are coding like this&lt;/P&gt;&lt;P&gt;At Selection-Screen I have written code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ok_code = sy-ucomm.&lt;/P&gt;&lt;P&gt;CASE ok_code.&lt;/P&gt;&lt;P&gt;WHEN 'BACK'.&lt;/P&gt;&lt;P&gt;LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;end case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then i want to know start-of-selection is an event also why you are coding it after at selection-screen.&lt;/P&gt;&lt;P&gt; you code like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At Selection-Screen I have written code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ok_code = sy-ucomm.&lt;/P&gt;&lt;P&gt;CASE ok_code.&lt;/P&gt;&lt;P&gt;WHEN 'BACK'.&lt;/P&gt;&lt;P&gt;LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;end case.&lt;/P&gt;&lt;P&gt;Start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 05:53:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817296#M349793</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T05:53:19Z</dc:date>
    </item>
    <item>
      <title>Re: Small Query in Selection Screen and Screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817297#M349794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Guys...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Previous code I have given is modify by this but same problem..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have dubug the program and trace it. it's will not goes on Selection Screen&lt;/P&gt;&lt;P&gt;on Each back button the event occurs which is user-command 2000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have Created a program using Selection-Screen 1000. and Screen 2000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At Selection-Screen I have written code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ok_code = sy-ucomm.&lt;/P&gt;&lt;P&gt;CASE ok_code.&lt;/P&gt;&lt;P&gt;WHEN 'BACK'.&lt;/P&gt;&lt;P&gt;LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;end case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and At the user-command of Screen 2000.&lt;/P&gt;&lt;P&gt;I have written Follow code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ok_code = sy-ucomm.&lt;/P&gt;&lt;P&gt;CASE ok_code.&lt;/P&gt;&lt;P&gt;WHEN 'BACK'.&lt;/P&gt;&lt;P&gt;      CALL SELECTION-SCREEN '1000'.&lt;/P&gt;&lt;P&gt;        EXIT.&lt;/P&gt;&lt;P&gt;when 'CANCEL'.&lt;/P&gt;&lt;P&gt;LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;when 'ADD'.&lt;/P&gt;&lt;P&gt;Perform Add_New_Row.&lt;/P&gt;&lt;P&gt;when 'REMOVE'.&lt;/P&gt;&lt;P&gt;Perform DELETE_Row.&lt;/P&gt;&lt;P&gt;when 'SAVE'.&lt;/P&gt;&lt;P&gt;Perform SAVE_DATA.&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;...................................................&lt;/P&gt;&lt;P&gt;My Problem is that I am not able to come out from program through back button..&lt;/P&gt;&lt;P&gt;Follow is like that..&lt;/P&gt;&lt;P&gt;at Selection Screen user provide some input on that basis screen 2000 Call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when i press back button on screen 2000 Selection screen 1000 appear.&lt;/P&gt;&lt;P&gt;and my Problem is that when i press back button on selection-screen on 1000.&lt;/P&gt;&lt;P&gt;it's goes to screen 2000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know, it's little thing I am missing, Let me know ..what was that..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers......&lt;/P&gt;&lt;P&gt;Swati...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 05:55:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817297#M349794</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T05:55:11Z</dc:date>
    </item>
    <item>
      <title>Re: Small Query in Selection Screen and Screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817298#M349795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Shiba, &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    I have try that also but That event is not triggering. at each back button only event user-Command at 2000 is trigger. Please cehck my 2 mail regarding the same..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At each back button on scrren 1000 and 2000 only and only event  user-Command at 2000 is trigger.&lt;/P&gt;&lt;P&gt;&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;Swati..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 06:00:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817298#M349795</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T06:00:22Z</dc:date>
    </item>
    <item>
      <title>Re: Small Query in Selection Screen and Screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817299#M349796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Swati,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How are you calling screen 2000.... can you please provide that part of the code?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 06:01:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817299#M349796</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T06:01:34Z</dc:date>
    </item>
    <item>
      <title>Re: Small Query in Selection Screen and Screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817300#M349797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what u have written in PAI of 1000 screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; try this&lt;/P&gt;&lt;P&gt;ok_code = sy-ucomm.&lt;/P&gt;&lt;P&gt;CASE ok_code.&lt;/P&gt;&lt;P&gt;WHEN 'BACK'.&lt;/P&gt;&lt;P&gt;LEAVE TO  SCREEN  0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 06:02:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817300#M349797</guid>
      <dc:creator>SantoshKallem</dc:creator>
      <dc:date>2007-01-31T06:02:14Z</dc:date>
    </item>
    <item>
      <title>Re: Small Query in Selection Screen and Screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817301#M349798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sustain&lt;/P&gt;&lt;P&gt;I am calling Screen 2000 at Start of Selection Event. for u r referance code is there..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.........................................................&lt;/P&gt;&lt;P&gt;Start-of-selection.&lt;/P&gt;&lt;P&gt;  ok_code = sy-ucomm.&lt;/P&gt;&lt;P&gt;  CASE ok_code.&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;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="6" type="ul"&gt;&lt;P&gt;Screen from Here only&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;  call screen 2000.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="61" type="ul"&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 06:04:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817301#M349798</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T06:04:03Z</dc:date>
    </item>
    <item>
      <title>Re: Small Query in Selection Screen and Screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817302#M349799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Swati,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Remove the below code from the START-OF-SELECTION event:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ok_code = sy-ucomm.&lt;/P&gt;&lt;P&gt;CASE ok_code.&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and check if it works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Susanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 06:05:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817302#M349799</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T06:05:39Z</dc:date>
    </item>
    <item>
      <title>Re: Small Query in Selection Screen and Screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817303#M349800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;This:&lt;/P&gt;&lt;P&gt;ok_code = sy-ucomm.&lt;/P&gt;&lt;P&gt;CASE ok_code.&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;&lt;/P&gt;&lt;P&gt;is not required in your code. Since, screen 1000 is the standard selection screen no., you dont hav to code for it, it will come out the program when you press back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Subramanian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 06:10:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817303#M349800</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T06:10:29Z</dc:date>
    </item>
    <item>
      <title>Re: Small Query in Selection Screen and Screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817304#M349801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Swati,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the PAI event for BACK ok-code put a condition for screen no as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-dynnr = '2000'.&lt;/P&gt;&lt;P&gt;LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 06:17:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817304#M349801</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T06:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: Small Query in Selection Screen and Screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817305#M349802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Susthain.&lt;/P&gt;&lt;P&gt;Thanks Problem is solved.. with leave to screen 0..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Point are Rewarded to you.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Swati..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 06:27:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817305#M349802</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T06:27:46Z</dc:date>
    </item>
    <item>
      <title>Re: Small Query in Selection Screen and Screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817306#M349803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Swati,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have rewarded points to someone else &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 06:30:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817306#M349803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T06:30:54Z</dc:date>
    </item>
    <item>
      <title>Re: Small Query in Selection Screen and Screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817307#M349804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry swati i am not reading properly your requirement. i think you have given start-of-selection at that place as i told earlier.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from your query what i can under stand in your report program you are calling screen 2000. if it is correct then no need to create screen 1000 for that because it will automatically create that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and for screen 2000 dont code at user-command write the code at PAI of 2000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and there in back use set screen 0. leave screen command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please clarify me if i am wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jan 2007 06:31:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/small-query-in-selection-screen-and-screen/m-p/1817307#M349804</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-31T06:31:16Z</dc:date>
    </item>
  </channel>
</rss>

