<?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: LOOP AT SCREEN REQUIRED  SELECT-OPTION in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-required-select-option/m-p/12192922#M1980950</link>
    <description>&lt;P&gt;thank you , this solved my problem. &lt;/P&gt;&lt;P&gt;I wonder what if I wanted to do the same thing  at selection-screen output. Is there any way to do that there ? &lt;BR /&gt;Thank you again&lt;/P&gt;</description>
    <pubDate>Wed, 15 Apr 2020 13:15:35 GMT</pubDate>
    <dc:creator>brkcnplt</dc:creator>
    <dc:date>2020-04-15T13:15:35Z</dc:date>
    <item>
      <title>LOOP AT SCREEN REQUIRED  SELECT-OPTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-required-select-option/m-p/12192920#M1980948</link>
      <description>&lt;P&gt;Hi Experts , &lt;BR /&gt;In my case I need to make s_proc is required if s_objid is not inital ,&lt;/P&gt;
  &lt;P&gt;Here is my code which I tried. &lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;SELECT-OPTIONS: s_objid FOR crmd_orderadm_h-object_id,
                s_proc FOR crmd_orderadm_h-process_type NO INTERVALS MODIF ID md1.
SELECTION-SCREEN: END OF BLOCK blok1.

AT SELECTION-SCREEN OUTPUT.

  LOOP AT SCREEN.
    IF s_proc-low IS NOT INITIAL.
      IF screen-group1 = 'MD1'.
        screen-required = '1'.
        MODIFY SCREEN.
      ENDIF.
    ENDIF.
  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;What I'm missing ? &lt;BR /&gt;Kind Regards.&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Apr 2020 12:56:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-required-select-option/m-p/12192920#M1980948</guid>
      <dc:creator>brkcnplt</dc:creator>
      <dc:date>2020-04-15T12:56:44Z</dc:date>
    </item>
    <item>
      <title>Re: LOOP AT SCREEN REQUIRED  SELECT-OPTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-required-select-option/m-p/12192921#M1980949</link>
      <description>&lt;P&gt;&lt;SPAN class="mention-scrubbed"&gt;brkcnplt&lt;/SPAN&gt;,&lt;/P&gt;&lt;P&gt;You can achieve the same requirement using AT SELECTION SCREEN event as given below:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AT SELECTION SCREEN.
IF s_objid is not initial and s_proc is initial.
*** Write your error message here asking the user to populate s_proc when S_objid is entered.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards!&lt;/P&gt;</description>
      <pubDate>Wed, 15 Apr 2020 13:02:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-required-select-option/m-p/12192921#M1980949</guid>
      <dc:creator>former_member1716</dc:creator>
      <dc:date>2020-04-15T13:02:20Z</dc:date>
    </item>
    <item>
      <title>Re: LOOP AT SCREEN REQUIRED  SELECT-OPTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-required-select-option/m-p/12192922#M1980950</link>
      <description>&lt;P&gt;thank you , this solved my problem. &lt;/P&gt;&lt;P&gt;I wonder what if I wanted to do the same thing  at selection-screen output. Is there any way to do that there ? &lt;BR /&gt;Thank you again&lt;/P&gt;</description>
      <pubDate>Wed, 15 Apr 2020 13:15:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-required-select-option/m-p/12192922#M1980950</guid>
      <dc:creator>brkcnplt</dc:creator>
      <dc:date>2020-04-15T13:15:35Z</dc:date>
    </item>
    <item>
      <title>Re: LOOP AT SCREEN REQUIRED  SELECT-OPTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-required-select-option/m-p/12192923#M1980951</link>
      <description>&lt;SPAN class="mention-scrubbed"&gt;brkcnplt&lt;/SPAN&gt; You can do whatever you want in the output block. But why would you want to validate the input not during input validation?</description>
      <pubDate>Wed, 15 Apr 2020 13:49:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-required-select-option/m-p/12192923#M1980951</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2020-04-15T13:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: LOOP AT SCREEN REQUIRED  SELECT-OPTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-required-select-option/m-p/12192924#M1980952</link>
      <description>&lt;P&gt;&lt;SPAN class="mention-scrubbed"&gt;brkcnplt&lt;/SPAN&gt;,To understand that you first need to understand the difference between the two events, knowing the difference can give you a better understanding.Regards!&lt;/P&gt;</description>
      <pubDate>Wed, 15 Apr 2020 14:16:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-required-select-option/m-p/12192924#M1980952</guid>
      <dc:creator>former_member1716</dc:creator>
      <dc:date>2020-04-15T14:16:11Z</dc:date>
    </item>
  </channel>
</rss>

