<?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: PAI error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pai-error/m-p/3311220#M793089</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;MODULE ZNUM1 INPUT.&lt;/P&gt;&lt;P&gt;IF NUM1 &amp;lt; 4.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;loop at screen.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME = 'NUM1'.&lt;/P&gt;&lt;P&gt;SCREEN-INVISIBLE = 1.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;modify screen.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;endloop.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDMODULE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Venkatesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 Jan 2008 11:55:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-31T11:55:06Z</dc:date>
    <item>
      <title>PAI error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pai-error/m-p/3311219#M793088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I designed num1,num2 and num3 fields.Add and exit push buttons.Add push button makes numbers in num1 and num2 add,display it in num3.It works fine with 'Add' push button.I modified input field such that if num1 number is less than 4,i want num1 display as invisible or inactive.How to do this.Following code is not working.Advice please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE ZNUM1 INPUT.&lt;/P&gt;&lt;P&gt;IF NUM1 &amp;lt; 4.&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME = 'NUM1'.&lt;/P&gt;&lt;P&gt;SCREEN-INVISIBLE = 1.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 11:48:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pai-error/m-p/3311219#M793088</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-31T11:48:42Z</dc:date>
    </item>
    <item>
      <title>Re: PAI error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pai-error/m-p/3311220#M793089</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;MODULE ZNUM1 INPUT.&lt;/P&gt;&lt;P&gt;IF NUM1 &amp;lt; 4.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;loop at screen.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME = 'NUM1'.&lt;/P&gt;&lt;P&gt;SCREEN-INVISIBLE = 1.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;modify screen.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;endloop.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDMODULE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Venkatesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 11:55:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pai-error/m-p/3311220#M793089</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-31T11:55:06Z</dc:date>
    </item>
    <item>
      <title>Re: PAI error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pai-error/m-p/3311221#M793090</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 it,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE ZNUM1 INPUT.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME = 'NUM1'.&lt;/P&gt;&lt;P&gt;IF NUM1 &amp;lt; 4.&lt;/P&gt;&lt;P&gt;SCREEN-input = 1.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;SCREEN-input = 0.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;L.Velu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 09:34:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pai-error/m-p/3311221#M793090</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T09:34:35Z</dc:date>
    </item>
    <item>
      <title>Re: PAI error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pai-error/m-p/3311222#M793091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gopi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The main thing here is ... the MODULE ZNUM1 should be a &lt;STRONG&gt;PBO&lt;/STRONG&gt; module. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE ZNUM1 &lt;STRONG&gt;OUTPUT&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, set the SCREEN-INPUT (0 for inactive and 1 for activE) and also set SCREEN-ACTIVE = '1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Main thing (once again) it's a &lt;STRONG&gt;PBO module NOT PAI&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Aditya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 12:38:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pai-error/m-p/3311222#M793091</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T12:38:35Z</dc:date>
    </item>
  </channel>
</rss>

