<?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: LOOP AT SCREEN --- ***URGENT*** in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-urgent/m-p/2835946#M664018</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 to write in PBO. Made one module in PBO like &amp;lt;b&amp;gt;init_screen&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;MODULE init_screen OUTPUT.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF screen-group1 = 111 AND ( save_ok = 'DIS' OR save_ok = 'NT' OR&lt;/P&gt;&lt;P&gt;                                save_ok = 'PR'  OR save_ok = 'FI' OR save_ok = 'LT' ).&lt;/P&gt;&lt;P&gt;      screen-input = 0.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ELSEIF screen-group1 = 111 AND ( save_ok = 'CL' OR save_ok = 'CHG' ).&lt;/P&gt;&lt;P&gt;      screen-input = 1.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;ENDMODULE.                 " init_screen  OUTPUT&amp;lt;/b&amp;gt;&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>Sat, 06 Oct 2007 09:23:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-06T09:23:56Z</dc:date>
    <item>
      <title>LOOP AT SCREEN --- ***URGENT***</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-urgent/m-p/2835944#M664016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an EXIT which is in PAI. I am writing a code for 4 fields in the exit. When a user enters some number in field1 and selects H from the dropdown in field2. The Field 3 and Field 4 should get disabled. I have tried writing Loop at screen below the code in same exit. But its not working. Do any one know how to tackle this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Md&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Oct 2007 08:13:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-urgent/m-p/2835944#M664016</guid>
      <dc:creator>former_member2382</dc:creator>
      <dc:date>2007-10-06T08:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: LOOP AT SCREEN --- ***URGENT***</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-urgent/m-p/2835945#M664017</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 your code in PBO event instead of PAI event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rengaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Oct 2007 08:48:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-urgent/m-p/2835945#M664017</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-06T08:48:19Z</dc:date>
    </item>
    <item>
      <title>Re: LOOP AT SCREEN --- ***URGENT***</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-urgent/m-p/2835946#M664018</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 to write in PBO. Made one module in PBO like &amp;lt;b&amp;gt;init_screen&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;MODULE init_screen OUTPUT.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF screen-group1 = 111 AND ( save_ok = 'DIS' OR save_ok = 'NT' OR&lt;/P&gt;&lt;P&gt;                                save_ok = 'PR'  OR save_ok = 'FI' OR save_ok = 'LT' ).&lt;/P&gt;&lt;P&gt;      screen-input = 0.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ELSEIF screen-group1 = 111 AND ( save_ok = 'CL' OR save_ok = 'CHG' ).&lt;/P&gt;&lt;P&gt;      screen-input = 1.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;ENDMODULE.                 " init_screen  OUTPUT&amp;lt;/b&amp;gt;&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>Sat, 06 Oct 2007 09:23:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-urgent/m-p/2835946#M664018</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-06T09:23:56Z</dc:date>
    </item>
    <item>
      <title>Re: LOOP AT SCREEN --- ***URGENT***</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-urgent/m-p/2835947#M664019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My Dear, &lt;/P&gt;&lt;P&gt;in SAP we cannot trigger dialog step [PBOa dn PAI] on change of list.. &lt;/P&gt;&lt;P&gt;so it will not happen as soon as u change the selection in the list..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What u can try is either push button (have to be click for fields to be deactivated)&lt;/P&gt;&lt;P&gt;or try radio button or check box.. (thy can trigger PBO and PAI when a Function code is assign to them)..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No Rewards Plz...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Oct 2007 09:53:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-urgent/m-p/2835947#M664019</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-06T09:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: LOOP AT SCREEN --- ***URGENT***</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-urgent/m-p/2835948#M664020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bhai Viraani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just can't change the functional requirement. It has been design by some top level guys. We just need to implement this functionality. Anyways, I have solved half the problem. Will let you know, once I finish this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Parvez.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Oct 2007 09:58:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-urgent/m-p/2835948#M664020</guid>
      <dc:creator>former_member2382</dc:creator>
      <dc:date>2007-10-06T09:58:41Z</dc:date>
    </item>
  </channel>
</rss>

