<?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: making a field mandatory while selecting radio button in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-a-field-mandatory-while-selecting-radio-button/m-p/5607477#M1277805</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I solved this using a counter&lt;/P&gt;&lt;P&gt;*Validating the posting date&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON s_budat.&lt;/P&gt;&lt;P&gt;  IF  rb_4 = 'X'.&lt;/P&gt;&lt;P&gt;    IF gf_cnt EQ '6' AND s_budat-low+4(2) EQ '00'.&lt;/P&gt;&lt;P&gt;      MESSAGE text-093 TYPE 'I' DISPLAY LIKE 'E'.&lt;/P&gt;&lt;P&gt;      LEAVE LIST-PROCESSING.&lt;/P&gt;&lt;P&gt;      STOP.&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;*Prompt user for custom date&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  CLEAR : gf_cnt,&lt;/P&gt;&lt;P&gt;          s_budat[],&lt;/P&gt;&lt;P&gt;          s_budat.&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF screen-name CS 'S_BUDAT'.&lt;/P&gt;&lt;P&gt;      IF NOT rb_4 IS INITIAL.&lt;/P&gt;&lt;P&gt;        screen-active = 1.&lt;/P&gt;&lt;P&gt;        gf_cnt = gf_cnt + 1.&lt;/P&gt;&lt;P&gt;      ELSE.&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;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 May 2009 13:15:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-06T13:15:35Z</dc:date>
    <item>
      <title>making a field mandatory while selecting radio button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-a-field-mandatory-while-selecting-radio-button/m-p/5607466#M1277794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus&lt;/P&gt;&lt;P&gt;    There are four radio buttons in the selection screen.while a selecting a fourth radio button the user should be prompted to enter select option.while the user selects the fourth radio button only select option should become a mandatory field.If user selects first button then select option should be hidden again. I am finding problem in making select option mandatory while selecting fourth radio button. &lt;/P&gt;&lt;P&gt;My code is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables : afru.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN POSITION 1.&lt;/P&gt;&lt;P&gt;PARAMETERS :&lt;/P&gt;&lt;P&gt;  rb_1 RADIOBUTTON GROUP g1 DEFAULT 'X' USER-COMMAND chk.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 3(5) text-003.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN POSITION 10.&lt;/P&gt;&lt;P&gt;PARAMETERS :&lt;/P&gt;&lt;P&gt;  rb_2 RADIOBUTTON GROUP g1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 12(10) text-004.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN POSITION 22.&lt;/P&gt;&lt;P&gt;PARAMETERS :&lt;/P&gt;&lt;P&gt;  rb_3 RADIOBUTTON GROUP g1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 24(10) text-005.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;PARAMETERS:&lt;/P&gt;&lt;P&gt;  rb_4 RADIOBUTTON GROUP g1.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS:&lt;/P&gt;&lt;P&gt;  s_budat FOR afru-budat MODIF ID d1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Prompt user for custom date&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 rb_4 = '' AND screen-group1 = 'D1'.&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;P&gt;&lt;/P&gt;&lt;P&gt;plz suggest steps&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ganesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 04:30:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-a-field-mandatory-while-selecting-radio-button/m-p/5607466#M1277794</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T04:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: making a field mandatory while selecting radio button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-a-field-mandatory-while-selecting-radio-button/m-p/5607467#M1277795</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;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;If rb_4 eq 'X'.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF screen-group1 = 'D1'.&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;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This works&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 04:36:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-a-field-mandatory-while-selecting-radio-button/m-p/5607467#M1277795</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T04:36:32Z</dc:date>
    </item>
    <item>
      <title>Re: making a field mandatory while selecting radio button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-a-field-mandatory-while-selecting-radio-button/m-p/5607468#M1277796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

tables : afru.
SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
*
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN POSITION 1.
PARAMETERS :
rb_1 RADIOBUTTON GROUP g1 DEFAULT 'X' USER-COMMAND chk.
SELECTION-SCREEN COMMENT 3(5) text-003.
*
SELECTION-SCREEN POSITION 10.
PARAMETERS :
rb_2 RADIOBUTTON GROUP g1.
SELECTION-SCREEN COMMENT 12(10) text-004.
*
SELECTION-SCREEN POSITION 22.
PARAMETERS :
rb_3 RADIOBUTTON GROUP g1.
SELECTION-SCREEN COMMENT 24(10) text-005.
SELECTION-SCREEN END OF LINE.
*
PARAMETERS:
rb_4 RADIOBUTTON GROUP g1.
SELECT-OPTIONS:
s_budat FOR afru-budat MODIF ID d1.
SELECTION-SCREEN END OF BLOCK b2.

*Prompt user for custom date
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF rb_4 = '' AND screen-group1 = 'D1'.
screen-active = '0'.
ENDIF.
MODIFY SCREEN.
ENDLOOP.

at selection-screen on s_budat.

IF rb_4 = 'X' .
if s_budat is initial.
message 'Enter Value for Posting date' type 'I' display like 'E'.
endif.
endif.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 04:40:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-a-field-mandatory-while-selecting-radio-button/m-p/5607468#M1277796</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2009-05-06T04:40:26Z</dc:date>
    </item>
    <item>
      <title>Re: making a field mandatory while selecting radio button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-a-field-mandatory-while-selecting-radio-button/m-p/5607469#M1277797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;at selection screen.&lt;/P&gt;&lt;P&gt;if s_budat-low is initial and s_budat-high is initial.&lt;/P&gt;&lt;P&gt;error.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 04:40:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-a-field-mandatory-while-selecting-radio-button/m-p/5607469#M1277797</guid>
      <dc:creator>Sandeep_Panghal</dc:creator>
      <dc:date>2009-05-06T04:40:27Z</dc:date>
    </item>
    <item>
      <title>Re: making a field mandatory while selecting radio button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-a-field-mandatory-while-selecting-radio-button/m-p/5607470#M1277798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ganesh,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECT-OPTIONS:
s_budat FOR afru-budat obligatory MODIF ID d1.
&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 04:41:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-a-field-mandatory-while-selecting-radio-button/m-p/5607470#M1277798</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T04:41:30Z</dc:date>
    </item>
    <item>
      <title>Re: making a field mandatory while selecting radio button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-a-field-mandatory-while-selecting-radio-button/m-p/5607471#M1277799</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;To make the select-option mandatory u can write a validation in at selection-screen on s_budat-low.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT selection-screen on s_budat-low.&lt;/P&gt;&lt;P&gt;If s_budat[] is initial and rd4 is not initial.&lt;/P&gt;&lt;P&gt;   message 'Enter Value For S_BUDAT'&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this resolves your query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nikhil&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Nikhil Kayal on May 6, 2009 6:46 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 04:45:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-a-field-mandatory-while-selecting-radio-button/m-p/5607471#M1277799</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T04:45:39Z</dc:date>
    </item>
    <item>
      <title>Re: making a field mandatory while selecting radio button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-a-field-mandatory-while-selecting-radio-button/m-p/5607472#M1277800</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;Use OBLIGATORY in your Select option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 04:54:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-a-field-mandatory-while-selecting-radio-button/m-p/5607472#M1277800</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T04:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: making a field mandatory while selecting radio button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-a-field-mandatory-while-selecting-radio-button/m-p/5607473#M1277801</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;  When I use obligatory in select options once the if the user radio button it does not allow other radio button  to choose...for example if user selects radio button 4 and it shows select option...If the user again want to choose first radio button instead of 4th radio button..obligatory doesnt allow the user to other radio buttons...&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ganesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 04:59:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-a-field-mandatory-while-selecting-radio-button/m-p/5607473#M1277801</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T04:59:04Z</dc:date>
    </item>
    <item>
      <title>Re: making a field mandatory while selecting radio button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-a-field-mandatory-while-selecting-radio-button/m-p/5607474#M1277802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Making select option OBLIGATORY will make this mandatory on the screen.&lt;/P&gt;&lt;P&gt;better try the approach in first raply for this thread.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 05:02:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-a-field-mandatory-while-selecting-radio-button/m-p/5607474#M1277802</guid>
      <dc:creator>Sandeep_Panghal</dc:creator>
      <dc:date>2009-05-06T05:02:53Z</dc:date>
    </item>
    <item>
      <title>Re: making a field mandatory while selecting radio button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-a-field-mandatory-while-selecting-radio-button/m-p/5607475#M1277803</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;Just try out the below code.&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;If rb_4 eq 'X'.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF screen-group1 = 'D1'.&lt;/P&gt;&lt;P&gt;screen-required = '1'.&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;P&gt;endif.&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;Nikhil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 05:11:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-a-field-mandatory-while-selecting-radio-button/m-p/5607475#M1277803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T05:11:06Z</dc:date>
    </item>
    <item>
      <title>Re: making a field mandatory while selecting radio button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-a-field-mandatory-while-selecting-radio-button/m-p/5607476#M1277804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ganesh,&lt;/P&gt;&lt;P&gt;Please add the following code to ur program and it works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;if not rb_4 is initial.&lt;/P&gt;&lt;P&gt;   if s_budat[] is initial.&lt;/P&gt;&lt;P&gt;       write:/'message[]'.&lt;/P&gt;&lt;P&gt;       exit.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;      write:/'*required logic'.&lt;/P&gt;&lt;P&gt;&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;Thanx,&lt;/P&gt;&lt;P&gt;Anusha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 05:23:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-a-field-mandatory-while-selecting-radio-button/m-p/5607476#M1277804</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T05:23:38Z</dc:date>
    </item>
    <item>
      <title>Re: making a field mandatory while selecting radio button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-a-field-mandatory-while-selecting-radio-button/m-p/5607477#M1277805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I solved this using a counter&lt;/P&gt;&lt;P&gt;*Validating the posting date&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON s_budat.&lt;/P&gt;&lt;P&gt;  IF  rb_4 = 'X'.&lt;/P&gt;&lt;P&gt;    IF gf_cnt EQ '6' AND s_budat-low+4(2) EQ '00'.&lt;/P&gt;&lt;P&gt;      MESSAGE text-093 TYPE 'I' DISPLAY LIKE 'E'.&lt;/P&gt;&lt;P&gt;      LEAVE LIST-PROCESSING.&lt;/P&gt;&lt;P&gt;      STOP.&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;*Prompt user for custom date&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  CLEAR : gf_cnt,&lt;/P&gt;&lt;P&gt;          s_budat[],&lt;/P&gt;&lt;P&gt;          s_budat.&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF screen-name CS 'S_BUDAT'.&lt;/P&gt;&lt;P&gt;      IF NOT rb_4 IS INITIAL.&lt;/P&gt;&lt;P&gt;        screen-active = 1.&lt;/P&gt;&lt;P&gt;        gf_cnt = gf_cnt + 1.&lt;/P&gt;&lt;P&gt;      ELSE.&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;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2009 13:15:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-a-field-mandatory-while-selecting-radio-button/m-p/5607477#M1277805</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-06T13:15:35Z</dc:date>
    </item>
  </channel>
</rss>

