<?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: Hide a selection field in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-a-selection-field/m-p/873774#M50362</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;  You can try the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: MARA.&lt;/P&gt;&lt;P&gt;PARAMETERS : p_werks1 TYPE werks_d MODIF ID bk1,&lt;/P&gt;&lt;P&gt;             p_werks2 TYPE werks_d MODIF ID bk1'&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS SO_MATNR FOR MARA-MATNR MODIF ID bk1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-group1 = 'BK1'.&lt;/P&gt;&lt;P&gt;        screen-active = 0.&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;Jeff&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Jan 2005 06:41:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-01-05T06:41:07Z</dc:date>
    <item>
      <title>Hide a selection field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-a-selection-field/m-p/873770#M50358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need to have a selection field , But the user should not be able to see it. How to hide the same from the selection screen ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jan 2005 05:31:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-a-selection-field/m-p/873770#M50358</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-01-05T05:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: Hide a selection field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-a-selection-field/m-p/873771#M50359</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;Perhaps you could use the NO-DISPLAY addition for select-options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you intend to use the field only for internal processing, you could use RANGES as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Shehryar Khan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jan 2005 05:54:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-a-selection-field/m-p/873771#M50359</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-01-05T05:54:42Z</dc:date>
    </item>
    <item>
      <title>Re: Hide a selection field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-a-selection-field/m-p/873772#M50360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   u can try out following code:&lt;/P&gt;&lt;P&gt;parameters: param1,&lt;/P&gt;&lt;P&gt;            param2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen 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 = 'PARAM1'.&lt;/P&gt;&lt;P&gt;  screen-invisible = 1.&lt;/P&gt;&lt;P&gt;  screen-active = 0.&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jan 2005 06:14:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-a-selection-field/m-p/873772#M50360</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-01-05T06:14:15Z</dc:date>
    </item>
    <item>
      <title>Re: Hide a selection field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-a-selection-field/m-p/873773#M50361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  The previous code segment I gave, does not hide the name(text) of the parameter..so make following change in the if condition:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if screen-name = 'PARAM1' or &lt;/P&gt;&lt;P&gt;   screen-name = '%_PARAM1_%_APP_%-TEXT'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jan 2005 06:23:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-a-selection-field/m-p/873773#M50361</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-01-05T06:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: Hide a selection field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-a-selection-field/m-p/873774#M50362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;  You can try the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: MARA.&lt;/P&gt;&lt;P&gt;PARAMETERS : p_werks1 TYPE werks_d MODIF ID bk1,&lt;/P&gt;&lt;P&gt;             p_werks2 TYPE werks_d MODIF ID bk1'&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS SO_MATNR FOR MARA-MATNR MODIF ID bk1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-group1 = 'BK1'.&lt;/P&gt;&lt;P&gt;        screen-active = 0.&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;Jeff&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jan 2005 06:41:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-a-selection-field/m-p/873774#M50362</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-01-05T06:41:07Z</dc:date>
    </item>
    <item>
      <title>Re: Hide a selection field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-a-selection-field/m-p/873775#M50363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i think the way Jeffrey and Tejal suggested the invisible fields will become visible if you create a variant and then fill the selection screen fields with the variant. NO DISPLAY is the best option but you cant use this for check boxes etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2005 04:24:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-a-selection-field/m-p/873775#M50363</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-01-06T04:24:58Z</dc:date>
    </item>
  </channel>
</rss>

