<?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: Dynamic Selection Screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586768#M1081884</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;PRE&gt;&lt;CODE&gt;SELECT-OPTIONS :   sl_matnr FOR mara-matnr OBLIGATORY,
                  sl_vkorg FOR a602-vkorg OBLIGATORY NO INTERVAL NO-EXTENSIONS,
                  sl_kunnr FOR a602-kunnr,
                  sl_vtweg FOR a950-vtweg MODIF ID 001, "modif id
                  sl_datab FOR a602-datab NO INTERVAL NO-EXTENSIONS.

AT SELECTION-SCREEN OUTPUT sl_kunnr. "selection screen PBO
LOOP AT screen.
CHECK screen-group EQ '001'.
IF sl_kunnr IS INITIAL.
screen-invisible EQ '0'.
ELSE.
screen-invisible EQ '1'.
ENDIF.
MODIFY screen.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hoep this helps&lt;/P&gt;&lt;P&gt;ec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Sep 2008 12:59:38 GMT</pubDate>
    <dc:creator>JozsefSzikszai</dc:creator>
    <dc:date>2008-09-22T12:59:38Z</dc:date>
    <item>
      <title>Dynamic Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586765#M1081881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;i want create a dynamic selections screen.&lt;/P&gt;&lt;P&gt;here for example&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select-options:   sl_matnr for mara-matnr obligatory,
                  sl_vkorg for a602-vkorg obligatory no intervals no-extension,
                  sl_kunnr for a602-kunnr,
                  sl_vtweg for a950-vtweg,
                  sl_datab for a602-datab no intervals no-extension.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;when i write in sl_kunnr field, it should invisiable sl_vtweg.&lt;/P&gt;&lt;P&gt;i try to this way.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;at selection-screen on sl_kunnr.
  loop at screen.
    if screen-name = '%_SL_VTWEG_%_APP_%-TEXT'.
      %_sl_vtweg_%_app_%-invisible = 'X'.
    endif.
  endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;but it show error, that the filed "invisible" not exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ths for help&lt;/P&gt;&lt;P&gt;kostonstyle&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 12:52:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586765#M1081881</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-22T12:52:07Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586766#M1081882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;use the screen table for selection-screen validations.&lt;/P&gt;&lt;P&gt;u can write as screen-invisible = 'X' .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 12:54:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586766#M1081882</guid>
      <dc:creator>KK07</dc:creator>
      <dc:date>2008-09-22T12:54:02Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586767#M1081883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF screen-name = 'SL_VTWEG-LOW' OR  screen-name = 'SL_VTWEG-HIGH'.&lt;/P&gt;&lt;P&gt;IF SL_KUNNR IS NOT INITAIL.&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 12:59:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586767#M1081883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-22T12:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586768#M1081884</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;PRE&gt;&lt;CODE&gt;SELECT-OPTIONS :   sl_matnr FOR mara-matnr OBLIGATORY,
                  sl_vkorg FOR a602-vkorg OBLIGATORY NO INTERVAL NO-EXTENSIONS,
                  sl_kunnr FOR a602-kunnr,
                  sl_vtweg FOR a950-vtweg MODIF ID 001, "modif id
                  sl_datab FOR a602-datab NO INTERVAL NO-EXTENSIONS.

AT SELECTION-SCREEN OUTPUT sl_kunnr. "selection screen PBO
LOOP AT screen.
CHECK screen-group EQ '001'.
IF sl_kunnr IS INITIAL.
screen-invisible EQ '0'.
ELSE.
screen-invisible EQ '1'.
ENDIF.
MODIFY screen.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hoep this helps&lt;/P&gt;&lt;P&gt;ec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 12:59:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586768#M1081884</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-09-22T12:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586769#M1081885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Give "sl_vtweg for a950-vtweg" a MODIF ID&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg. sl_vtweg for a950-vtweg MODIF ID B1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you can do:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at screen.
  if screen-group1 eq 'B1'.
    screen-invisible = 1.
  endif.
 modify screen.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Maen Anachronos on Sep 22, 2008 3:00 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 13:00:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586769#M1081885</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-22T13:00:06Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586770#M1081886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello kostonstyle,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewrite your code as below to avoid syntax error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;    if screen-name = '%_SL_VTWEG_%_APP_%-TEXT'.&lt;/P&gt;&lt;P&gt;      screen-visible = 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;Writing this statement in the event at selection screen on sl_kunnr will not meet your requirement as this event is triggered only when you execute the report.&lt;/P&gt;&lt;P&gt;You need to assign a user-command to sl_kunnr. See F1 for help.&lt;/P&gt;&lt;P&gt;Then write the above code in at selection-screen output event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Farzan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 13:00:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586770#M1081886</guid>
      <dc:creator>former_member137336</dc:creator>
      <dc:date>2008-09-22T13:00:18Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586771#M1081887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when i write into sl_kunnr field, then it should invisible sl_vtweg, otherwise not.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 13:23:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586771#M1081887</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-22T13:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586772#M1081888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;/spoonfeed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AT SELECTION_SCREEN OUTPUT.

IF NOT sl_kunnr[] is initial.

* Do your stuff

ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm sure there are other ways, but honestly i cba to look them up.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 13:27:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586772#M1081888</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-22T13:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586773#M1081889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try it this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select-options:   sl_matnr for mara-matnr obligatory,
                  sl_vkorg for a950-vkorg," obligatory no intervals no-extension,
                  sl_kunnr for a950-kunnr,
                  sl_vtweg for a950-vtweg,
                  sl_datab for a950-datab no intervals no-extension.



at selection-screen output.

 if sl_matnr[] is not initial.
  loop at screen.
    if screen-name CS 'SL_VKORG'.
       SCREEN-ACTIVE = 0.

       MODIFY SCREEN.

    endif.
  endloop.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With luck,&lt;/P&gt;&lt;P&gt;Pritam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 13:33:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586773#M1081889</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-22T13:33:16Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586774#M1081890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@Pritam Ghosh  &lt;/P&gt;&lt;P&gt;you are my good. super, it's functional.&lt;/P&gt;&lt;P&gt;thx all people for try help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards kostonstyle&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 13:39:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586774#M1081890</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-22T13:39:45Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586775#M1081891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You cannot change the screen in the AT SELECTION-SCREEN ON.. event. You have to do it in AT SELECTION-SCREEN OUTPUT. Also, to trigger AT SELECTION-SCREEN OUTPUT, the user has to press enter after a value is entered in the selection screen. You can try something like this.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

DATA: kunnr_entered TYPE c.

select-options:   sl_matnr for mara-matnr obligatory,
                  sl_vkorg for a602-vkorg obligatory no intervals no-extension,
                  sl_kunnr for a602-kunnr,
                  sl_vtweg for a950-vtweg,
                  sl_datab for a602-datab no intervals no-extension.

AT SELECTION-SCREEN ON sl_kunnr.
  IF sl_kunnr IS NOT INITIAL.
    kunnr_entered = 'X'.
  ELSE.
    CLEAR kunnr_entered.
  ENDIF.

AT SELECTION-SCREEN OUTPUT.
  IF kunnr_entered = 'X'.
    LOOP AT SCREEN.
      CHECK screen-group1 = 'KUN'.
      screen-active = 0.
      MODIFY SCREEN.
*-- even if the value is entered, clear it
      CLEAR sl_vtweg[].
    ENDLOOP.
  ELSE.
    LOOP AT SCREEN.
      CHECK screen-group1 = 'KUN'.
      screen-active = 1.
      MODIFY SCREEN.
    ENDLOOP.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 13:44:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586775#M1081891</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-22T13:44:03Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586776#M1081892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;CHECK screen-group1 = 'KUN'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You forgot to add the MODIF ID KUN. &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 13:54:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586776#M1081892</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-22T13:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586777#M1081893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;/CODE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;CODE&gt;CHECK screen-group1 = 'KUN'.&lt;/CODE&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; You forgot to add the MODIF ID KUN. &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and this code&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AT SELECTION-SCREEN ON sl_kunnr.
  IF sl_kunnr IS NOT INITIAL.
    kunnr_entered = 'X'.
  ELSE.
    CLEAR kunnr_entered.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;is just waste of time, because the content of sl_kunnr can be checked in the PBO directly. Anyway, it was worth 6 points... &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 14:04:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586777#M1081893</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-09-22T14:04:59Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586778#M1081894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's a selection screen. Given the requirements, how do you want to check the contents of the select-option in the PBO and act upon them?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i agree, it's a bit silly to set an indicator that the select-option is filled. &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;edit: on second thought, perhaps you meant the SELECTION_SCREEN OUTPUT when you wrote PBO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Maen Anachronos on Sep 22, 2008 4:22 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 14:21:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586778#M1081894</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-22T14:21:35Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586779#M1081895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; It's a selection screen. Given the requirements, how do you want to check the contents of the select-option in the PBO and act upon them?&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; But i agree, it's a bit silly to set an indicator that the select-option is filled. &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there are no tricks needed, it is possible to do it directly, just have a look at my solution above and give it a try! (of course the PBO has to be triggered through a USER-COMMAND, but it is necessary in any case)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 14:24:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586779#M1081895</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-09-22T14:24:30Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586780#M1081896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Aahh that post!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While i was posting my first reply, you already hit submit. Hence my reply was  a minute later. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And trust me, with 13 years of experience i don't think i need to try it out. &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 14:30:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586780#M1081896</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-22T14:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586781#M1081897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;edit: on second thought, perhaps you meant the SELECTION_SCREEN OUTPUT when you wrote PBO.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by simple report programming:&lt;/P&gt;&lt;P&gt;AT SELECT-SCREEN OUTPUT - this is PBO for the (automatically generated) selection screen&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON ... - these are PAIs for the (automatically generated) selection screen&lt;/P&gt;&lt;P&gt;but I believe this is clear-cut for you with 13 years of experience &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 14:36:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/4586781#M1081897</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-09-22T14:36:38Z</dc:date>
    </item>
  </channel>
</rss>

