<?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: Selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1525721#M240817</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Pavan,&lt;/P&gt;&lt;P&gt;You can change to display mode in the event&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;Check the app. condition here.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Aug 2006 05:52:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-21T05:52:09Z</dc:date>
    <item>
      <title>Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1525718#M240814</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;I have defined a selection screen which contains Dropdown box and few input boxes using 'select-options'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need to make few input boxes into display mode, if a particular option is selected at Dropdown box..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to code for this scenario..??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Aug 2006 05:46:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1525718#M240814</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-21T05:46:33Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1525719#M240815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Pavan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Use the code womething similar&lt;/P&gt;&lt;P&gt; &lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="196445"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Cheers&lt;/P&gt;&lt;P&gt; VJ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Vijayendra  Rao&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Aug 2006 05:49:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1525719#M240815</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-21T05:49:46Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1525720#M240816</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;check this report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;b&amp;gt;REPORT zwa_test2.

TYPE-POOLS : vrm.
tables: bkpf.

DATA : values TYPE vrm_values.
DATA : wa LIKE LINE OF values.

PARAMETERS : field(10) TYPE c AS LISTBOX VISIBLE LENGTH 10 MODIF id abc.

select-options: a for bkpf-bukrs MODIF ID buk.

select-options: b for bkpf-belnr MODIF ID SEL.


at selection-screen output.
  If field = 1.
    loop at screen.

      if screen-group1 = 'SEL'.
        screen-input = 0.
        modify screen.
      endif.

    endloop.

  endif.


INITIALIZATION.

  wa-key = '1'.
  wa-text = 'Orange'.
  APPEND wa TO values.

  wa-key = '2'.
  wa-text = 'Red'.
  APPEND wa TO values.

  wa-key = '3'.
  wa-text = 'Blue'.
  APPEND wa TO values.

  wa-key = '4'.
  wa-text = 'Gray'.
  APPEND wa TO values.


  CALL FUNCTION 'VRM_SET_VALUES'
       EXPORTING
            id              = 'FIELD'
            values          = values
       EXCEPTIONS
            id_illegal_name = 1
            OTHERS          = 2.&amp;lt;/b&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;HRA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Aug 2006 05:51:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1525720#M240816</guid>
      <dc:creator>dani_mn</dc:creator>
      <dc:date>2006-08-21T05:51:35Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1525721#M240817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Pavan,&lt;/P&gt;&lt;P&gt;You can change to display mode in the event&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;Check the app. condition here.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Aug 2006 05:52:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1525721#M240817</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-21T05:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1525722#M240818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Pavan,&lt;/P&gt;&lt;P&gt; you can do like this as below:&lt;/P&gt;&lt;P&gt; Parameters p_matnr like mara-matnr as list-box visible length 18 user-command UC01.&lt;/P&gt;&lt;P&gt;select-options : so_werks for marc-werks.&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 CS 'SO_WERKS'. &lt;/P&gt;&lt;P&gt;         if P_matnr eq &amp;lt;Condition&amp;gt;.&lt;/P&gt;&lt;P&gt;      screen-input = 0.&lt;/P&gt;&lt;P&gt;      Modify screen.&lt;/P&gt;&lt;P&gt;    Endif.&lt;/P&gt;&lt;P&gt;   Endif.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Krishnakumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Aug 2006 05:54:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1525722#M240818</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-21T05:54:12Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1525723#M240819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;first of all you must group your fields like that.&lt;/P&gt;&lt;P&gt;select-options : a for b MODIF ID GRP.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
at selection-screen output.
  if dropdownvalue eq X.
    loop at screen.
      if screen-group1 eq 'GRP'.
        screen-input = 0.
      else.
        screen-input = 1.
      endif.
      modify screen.
    endloop.
  endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ibrahim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Aug 2006 05:57:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1525723#M240819</guid>
      <dc:creator>ibrahim_u</dc:creator>
      <dc:date>2006-08-21T05:57:53Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1525724#M240820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;GOOD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you check like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if that particular field having value or it is checked you make that inupt box as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;screen-boxname - 1&lt;/P&gt;&lt;P&gt;and &lt;/P&gt;&lt;P&gt;screen-boxname -0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Aug 2006 06:21:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1525724#M240820</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-21T06:21:21Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1525725#M240821</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;In selection screen declare drop-down with user-command hide&lt;/P&gt;&lt;P&gt;and in 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;      case screen-group1.&lt;/P&gt;&lt;P&gt;        when  &amp;lt;varable&amp;gt;&lt;/P&gt;&lt;P&gt;          screen-required  = 0.&lt;/P&gt;&lt;P&gt;          screen-input     = 0.&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>Mon, 21 Aug 2006 06:41:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/1525725#M240821</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-21T06:41:16Z</dc:date>
    </item>
  </channel>
</rss>

