<?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: checkbox in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/3420656#M821518</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 can do thru  PBO event of that screen where your checkbox is placed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM hide_fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Loop at screen.&lt;/P&gt;&lt;P&gt;    IF screen-name = 'SOURCE'.&lt;/P&gt;&lt;P&gt;        screen-invisible = '1'.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or you can assign some group to more than 1 fields on the screen in the properties of the fields in that screen. so that you can change the properties of that group fields simply thru &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***&lt;STRONG&gt;PBO event&lt;/STRONG&gt;**&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM hide_fields&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-group4 EQ 'WHS'.&lt;/P&gt;&lt;P&gt;        screen-invisible = '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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sivaparvathi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Feb 2008 08:28:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-14T08:28:28Z</dc:date>
    <item>
      <title>checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/3420649#M821511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to make invisible the text box&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from a module pool screen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Feb 2008 07:59:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/3420649#M821511</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-14T07:59:50Z</dc:date>
    </item>
    <item>
      <title>Re: checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/3420650#M821512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;case sceenfield,&lt;/P&gt;&lt;P&gt;when 'FIELDNAME'.&lt;/P&gt;&lt;P&gt;screen-invisible = 1.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Feb 2008 08:03:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/3420650#M821512</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-14T08:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/3420651#M821513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in PBO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at screen.&lt;/P&gt;&lt;P&gt;  if screen-name = your_fieldname.&lt;/P&gt;&lt;P&gt;    screen.invisible = 'X'.&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Feb 2008 08:04:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/3420651#M821513</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-14T08:04:46Z</dc:date>
    </item>
    <item>
      <title>Re: checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/3420652#M821514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG&gt;Mahesh&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;  See this code,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at screen.&lt;/P&gt;&lt;P&gt;  if screen-name cp '&lt;STRONG&gt;checkbox&lt;/STRONG&gt;' . - - - -  ( &lt;STRONG&gt;Here check box name&lt;/STRONG&gt; )&lt;/P&gt;&lt;P&gt;    screen-active = 0.&lt;/P&gt;&lt;P&gt;    modifu screen.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if it is useful,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Mahi&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Feb 2008 08:08:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/3420652#M821514</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-14T08:08:21Z</dc:date>
    </item>
    <item>
      <title>Re: checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/3420653#M821515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;in the pbo of the screen.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;  if screen-name cp 'fieldname'.&lt;/P&gt;&lt;P&gt;   screen-invisible = 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;Plzz reward points if it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Feb 2008 08:12:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/3420653#M821515</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-14T08:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/3420654#M821516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;in the pbo of the screen.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;  if screen-name cp 'fieldname'.&lt;/P&gt;&lt;P&gt;   screen-invisible = 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;Plzz reward points if it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Feb 2008 08:12:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/3420654#M821516</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-14T08:12:16Z</dc:date>
    </item>
    <item>
      <title>Re: checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/3420655#M821517</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;To make screen modifications, we have to write a module in the PBO of the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;screen flow logic syntax :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module screen_modify.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In se38 program syntax:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module screen_modify output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;  if screen-name = textbox.     "text box name in module pool&lt;/P&gt;&lt;P&gt;    screen-input = 0.&lt;/P&gt;&lt;P&gt;    screen-invisible = 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;   &lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;kamala.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Feb 2008 08:24:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/3420655#M821517</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-14T08:24:36Z</dc:date>
    </item>
    <item>
      <title>Re: checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/3420656#M821518</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 can do thru  PBO event of that screen where your checkbox is placed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM hide_fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Loop at screen.&lt;/P&gt;&lt;P&gt;    IF screen-name = 'SOURCE'.&lt;/P&gt;&lt;P&gt;        screen-invisible = '1'.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or you can assign some group to more than 1 fields on the screen in the properties of the fields in that screen. so that you can change the properties of that group fields simply thru &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***&lt;STRONG&gt;PBO event&lt;/STRONG&gt;**&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM hide_fields&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-group4 EQ 'WHS'.&lt;/P&gt;&lt;P&gt;        screen-invisible = '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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sivaparvathi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Feb 2008 08:28:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/3420656#M821518</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-14T08:28:28Z</dc:date>
    </item>
    <item>
      <title>Re: checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/3420657#M821519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Feb 2008 08:30:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox/m-p/3420657#M821519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-14T08:30:46Z</dc:date>
    </item>
  </channel>
</rss>

