<?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 Loop at screen + radiobutton in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-radiobutton/m-p/2416493#M539352</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have two radiobuttons, and when one is selected I need to mark a date field as required, but if the other radio button is selected i need to mark the same field of date as not required in the selection screen.&lt;/P&gt;&lt;P&gt;How can I do that?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Jun 2007 15:10:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-25T15:10:45Z</dc:date>
    <item>
      <title>Loop at screen + radiobutton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-radiobutton/m-p/2416493#M539352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have two radiobuttons, and when one is selected I need to mark a date field as required, but if the other radio button is selected i need to mark the same field of date as not required in the selection screen.&lt;/P&gt;&lt;P&gt;How can I do that?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jun 2007 15:10:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-radiobutton/m-p/2416493#M539352</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-25T15:10:45Z</dc:date>
    </item>
    <item>
      <title>Re: Loop at screen + radiobutton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-radiobutton/m-p/2416494#M539353</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 don't think you can disable the required field (obligatory field) in selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Perhaps you can check the field and issue an error message (if initial).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jun 2007 15:18:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-radiobutton/m-p/2416494#M539353</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-25T15:18:21Z</dc:date>
    </item>
    <item>
      <title>Re: Loop at screen + radiobutton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-radiobutton/m-p/2416495#M539354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all, i resolved the problem :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b4 WITH FRAME TITLE text-008.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 10(30) text-022 FOR FIELD p_r1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN POSITION 1.&lt;/P&gt;&lt;P&gt;PARAMETERS : p_r1 TYPE c RADIOBUTTON GROUP g1 USER-COMMAND ucom.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 43(31) text-023 FOR FIELD p_r2.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN POSITION 40.&lt;/P&gt;&lt;P&gt;PARAMETERS : p_r2 TYPE c RADIOBUTTON GROUP g1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b4.&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 p_r2 = 'X'.&lt;/P&gt;&lt;P&gt;     IF screen-name = text-013. "S_BADAT-LOW&lt;/P&gt;&lt;P&gt;        screen-required = c_1.  " 1&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;      IF screen-name = text-014."S_UDATE-LOW&lt;/P&gt;&lt;P&gt;        screen-required = c_0.  "0&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      IF screen-name = text-013.&lt;/P&gt;&lt;P&gt;        screen-required = c_0.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;      IF screen-name = text-014.&lt;/P&gt;&lt;P&gt;        screen-required = c_1.&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;  ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jun 2007 19:39:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen-radiobutton/m-p/2416495#M539354</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-28T19:39:18Z</dc:date>
    </item>
  </channel>
</rss>

