<?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: Selection screen flow logic change not taking affect. Please help! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-flow-logic-change-not-taking-affect-please-help/m-p/1523048#M239941</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should not be changing the screen flow logic of a standard selection screen 1000.  It will always be regenerated.  In order to modify the standard selection screen, you can do this in the AT SELECTION-SCREEN output event and loop at screen and change the attributes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Loop at screen.
  if screen-name = 'P_CHECK'.
    screen-input = '0'.
    modify screen.
  endif.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 Aug 2006 14:33:24 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2006-08-01T14:33:24Z</dc:date>
    <item>
      <title>Selection screen flow logic change not taking affect. Please help!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-flow-logic-change-not-taking-affect-please-help/m-p/1523045#M239938</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;   When I am trying to change the selection scren flow logic I get the following message:&lt;/P&gt;&lt;P&gt;Selection screen: Report generation makes screen changes ineffective.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Whatever I am changing is not taking affect in runtime.&lt;/P&gt;&lt;P&gt;Even though I have activated the changed code for the screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What shall I do resolve this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Gopal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Aug 2006 14:29:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-flow-logic-change-not-taking-affect-please-help/m-p/1523045#M239938</guid>
      <dc:creator>gopalkrishna_baliga</dc:creator>
      <dc:date>2006-08-01T14:29:08Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen flow logic change not taking affect. Please help!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-flow-logic-change-not-taking-affect-please-help/m-p/1523046#M239939</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;You should use the AT SELECTION-SCREEN and AT SELECTION-SCREEN OUTPUT events to program the flow logic. SAP generates its own code for the selection-screen and any changes you make there will get over-written each time the program is generated/activated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shounak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Aug 2006 14:31:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-flow-logic-change-not-taking-affect-please-help/m-p/1523046#M239939</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-01T14:31:26Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen flow logic change not taking affect. Please help!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-flow-logic-change-not-taking-affect-please-help/m-p/1523047#M239940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should use &amp;lt;b&amp;gt;at selection-screen, Initialization&amp;lt;/b&amp;gt; events for the control of flow logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Naimesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Aug 2006 14:32:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-flow-logic-change-not-taking-affect-please-help/m-p/1523047#M239940</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2006-08-01T14:32:48Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen flow logic change not taking affect. Please help!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-flow-logic-change-not-taking-affect-please-help/m-p/1523048#M239941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should not be changing the screen flow logic of a standard selection screen 1000.  It will always be regenerated.  In order to modify the standard selection screen, you can do this in the AT SELECTION-SCREEN output event and loop at screen and change the attributes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Loop at screen.
  if screen-name = 'P_CHECK'.
    screen-input = '0'.
    modify screen.
  endif.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Aug 2006 14:33:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-flow-logic-change-not-taking-affect-please-help/m-p/1523048#M239941</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-01T14:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen flow logic change not taking affect. Please help!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-flow-logic-change-not-taking-affect-please-help/m-p/1523049#M239942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there.  After you change the flow logic and activate it, you have to reactivate the screen itself (after you get that error message). Hope this helps.&lt;/P&gt;&lt;P&gt; - April King&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Aug 2006 14:47:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-flow-logic-change-not-taking-affect-please-help/m-p/1523049#M239942</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-01T14:47:19Z</dc:date>
    </item>
  </channel>
</rss>

