<?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: Doubt in Application toolbar in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-application-toolbar/m-p/1872735#M367302</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in pai of the 101 you can get the value of age if you want to validate that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or when you are calling screen 102 then put the check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if age(field of 101 screen) ge 18.&lt;/P&gt;&lt;P&gt;call screen 102.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&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, 10 Jan 2007 07:25:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-10T07:25:57Z</dc:date>
    <item>
      <title>Doubt in Application toolbar</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-application-toolbar/m-p/1872731#M367298</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 two screen ,initial screen selection screen 1000 next screen  dialogue screen 101.it (101) has one application tool bar like "ELECT",i want deactive application toolbar  depending upon condition.example 4 input field in selection screen like 1,Name 2,Age,3Gender ,4Place. if user enter more then 18 old i will allow to active application tool bar in screen 101,if user enter input below 18 in selection screen ,i will deactive application tool bar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards.&lt;/P&gt;&lt;P&gt;Jay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jan 2007 06:24:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-application-toolbar/m-p/1872731#M367298</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-10T06:24:13Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt in Application toolbar</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-application-toolbar/m-p/1872732#M367299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make use of statement: SET PF-STATUS with addition: ... &amp;lt;b&amp;gt;EXCLUDING f ... EXCLUDING itab&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jan 2007 06:28:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-application-toolbar/m-p/1872732#M367299</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-10T06:28:51Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt in Application toolbar</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-application-toolbar/m-p/1872733#M367300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;declare itab&lt;/P&gt;&lt;P&gt;data : BEGIN OF iTAB occurs 0, &lt;/P&gt;&lt;P&gt;        FCODE LIKE RSMPE-FUNC, &lt;/P&gt;&lt;P&gt;      END OF iTAB. &lt;/P&gt;&lt;P&gt;append the fcodes you dont want to show in itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PBO of your screen 101 just define &lt;/P&gt;&lt;P&gt;module status output.&lt;/P&gt;&lt;P&gt;if age ge 18.&lt;/P&gt;&lt;P&gt;set pf-status 'ELEC'.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;set pf-status 'ELEC' excluding itab.&lt;/P&gt;&lt;P&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;shiba dutta&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or just create another pf status for lt 18 age.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jan 2007 06:34:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-application-toolbar/m-p/1872733#M367300</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-10T06:34:09Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt in Application toolbar</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-application-toolbar/m-p/1872734#M367301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi shiba.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have done it ,Thanks for you ,one more doubt. if user enter with in 18 old from selection screen (1000) to dilogue (101).now ELECT application toolbar showing how can i prevent that?&lt;/P&gt;&lt;P&gt;example:user will enter with 18 yr old from selection screen 1000 to dilogue screen 101,after entered in 101 screen ,user may be change his age below 18 in screen 101,how can i prvent ? (if user press the application toolbar it will poppulate one screen 102 abt election from 101 scree, i have done validation it when user may change age after entered screen 101 like Elction rights only for 18age, but i want to prevent popullation of screen 102)&lt;/P&gt;&lt;P&gt;pls help me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jan 2007 07:14:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-application-toolbar/m-p/1872734#M367301</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-10T07:14:45Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt in Application toolbar</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-application-toolbar/m-p/1872735#M367302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in pai of the 101 you can get the value of age if you want to validate that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or when you are calling screen 102 then put the check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if age(field of 101 screen) ge 18.&lt;/P&gt;&lt;P&gt;call screen 102.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&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, 10 Jan 2007 07:25:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-application-toolbar/m-p/1872735#M367302</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-10T07:25:57Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt in Application toolbar</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-application-toolbar/m-p/1872736#M367303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi shiba.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have solution..I have picked 10 mark to you.&lt;/P&gt;&lt;P&gt;Thank s a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jan 2007 07:46:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-in-application-toolbar/m-p/1872736#M367303</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-10T07:46:31Z</dc:date>
    </item>
  </channel>
</rss>

