<?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 Issue.....Immediate Soln needed... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue-immediate-soln-needed/m-p/1472433#M221903</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;  If i have understood your problem, it can be done easily.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  S_APPNO should be mandatory only when radtio button 2 or 3 is selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;gt; Remove Obligatory in S_APPNO declaration&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at screen.
     if screen-name = 'S_APPNO-LOW' and r1 is initial.
        screen-required = 1.
        modify screen.
     else.
        screen-required = 0.
        modify screen.
     endif.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do remember to reward for helpful answers.&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Aug 2006 11:15:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-30T11:15:37Z</dc:date>
    <item>
      <title>Selection Screen Issue.....Immediate Soln needed...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue-immediate-soln-needed/m-p/1472427#M221897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;selection-screen: begin of block blk1&lt;/P&gt;&lt;P&gt;            with frame title text-020.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter: R1 radiobutton group G1 user-command ABC default 'X',&lt;/P&gt;&lt;P&gt;           R2 radiobutton group G1 ,&lt;/P&gt;&lt;P&gt;           R3 radiobutton group G1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen end of block blk1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen: begin of block blk2&lt;/P&gt;&lt;P&gt;            with frame title text-020.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options: s_reqmai for zcomd_skftable-zreqemail NO INTERVALS&lt;/P&gt;&lt;P&gt;                no-extension modif id XYZ .&lt;/P&gt;&lt;P&gt;select-options: s_reqdep for zcomd_skftable-zreqdept NO INTERVALS&lt;/P&gt;&lt;P&gt;                no-extension modif id XYZ .&lt;/P&gt;&lt;P&gt;select-options: s_date for sy-datum no intervals default sy-datum no-extension modif id ABC.&lt;/P&gt;&lt;P&gt;select-options: s_appnam for zcomd_skftable-zapprname no intervals no-extension modif id XYZ.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options: s_appdes for zcomd_skftable-zapprdesi no intervals no-extension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options: s_appno for zcomd_skftable-zreqno no intervals no-extension modif id ABC.&lt;/P&gt;&lt;P&gt;select-options: s_reqby for zcomd_skftable-zreqby no intervals no-extension modif id XYZ .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen end of block blk2.&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;&lt;/P&gt;&lt;P&gt;if R1 = 'X'.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'S_APPNO-LOW'.&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;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'S_APPNO-LOW'.&lt;/P&gt;&lt;P&gt;screen-input = 1.&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;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are 3 Radio Buttons and few Input Boxes in the selection screen.&lt;/P&gt;&lt;P&gt;The First radio Button will be selected by Default.&lt;/P&gt;&lt;P&gt;At the same time the Field &amp;#147;S_APPNO&amp;#148; will be disabled if the First radio is active.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If User Selects second or Third Radio Button, the system will make the field &amp;#145;S_APPNO&amp;#148; into Active mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I want to make the field &amp;#147;S_APPNO&amp;#148; as even MANDATORY ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For this purpose, I coded as follows..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options: s_appno for zcomd_skftable-zreqno no intervals no-extension modif id ABC obligatory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And rest of the lines as mentioned above..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IN this case, when user clicks second Radio button, the field &amp;#147;s_appno&amp;#148; will become acive and even mandatory&amp;#133;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BUT, if user again selects first Radio Button, system will popup error like &amp;#147;Make an entry in Mandatory field&amp;#148;&amp;#133;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hence how to make it possible to avoid this error and make the s_appno again into DIISPLAY mode when user shifts from second or third radio button to First radio Button&amp;#133;???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone give me the exact code for this requirement...????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2006 10:26:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue-immediate-soln-needed/m-p/1472427#M221897</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-30T10:26:08Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Issue.....Immediate Soln needed...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue-immediate-soln-needed/m-p/1472428#M221898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;   instead of obligatory check &lt;/P&gt;&lt;P&gt;   do it programatically when 2 or 3 radio button checked&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;if R1 = 'X'.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'S_APPNO-LOW'.&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;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'S_APPNO-LOW'.&lt;/P&gt;&lt;P&gt;screen-input = 1.&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;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;amole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2006 10:34:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue-immediate-soln-needed/m-p/1472428#M221898</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-30T10:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Issue.....Immediate Soln needed...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue-immediate-soln-needed/m-p/1472429#M221899</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;leave the mandatary option from S_APPNOW and manage it by messagge error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF R1 = SPACE.&lt;/P&gt;&lt;P&gt;  IF S_APPNO[] IS INITIAL.&lt;/P&gt;&lt;P&gt;    MESSAGE E......&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;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2006 10:35:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue-immediate-soln-needed/m-p/1472429#M221899</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-30T10:35:38Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Issue.....Immediate Soln needed...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue-immediate-soln-needed/m-p/1472430#M221900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check field for intitial or not . if initial show the error specifying to enter the value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2006 10:35:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue-immediate-soln-needed/m-p/1472430#M221900</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-30T10:35:56Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Issue.....Immediate Soln needed...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue-immediate-soln-needed/m-p/1472431#M221901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   AT SELECTION-SCREEN output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if R1 = 'X'.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'S_APPNO-LOW'.&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;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'S_APPNO-LOW'.&lt;/P&gt;&lt;P&gt;screen-input = 1.&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;endif.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt; If S_APPNO[] is initial.&lt;/P&gt;&lt;P&gt;   message e00 'Enter value'.&lt;/P&gt;&lt;P&gt;  endif.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2006 10:36:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue-immediate-soln-needed/m-p/1472431#M221901</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-30T10:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Issue.....Immediate Soln needed...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue-immediate-soln-needed/m-p/1472432#M221902</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; You have to use error messages instead of obligatory keyword&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;Issue an error message when the field is empty.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2006 10:37:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue-immediate-soln-needed/m-p/1472432#M221902</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-30T10:37:40Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Issue.....Immediate Soln needed...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue-immediate-soln-needed/m-p/1472433#M221903</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;  If i have understood your problem, it can be done easily.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  S_APPNO should be mandatory only when radtio button 2 or 3 is selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;gt; Remove Obligatory in S_APPNO declaration&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at screen.
     if screen-name = 'S_APPNO-LOW' and r1 is initial.
        screen-required = 1.
        modify screen.
     else.
        screen-required = 0.
        modify screen.
     endif.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do remember to reward for helpful answers.&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2006 11:15:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issue-immediate-soln-needed/m-p/1472433#M221903</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-30T11:15:37Z</dc:date>
    </item>
  </channel>
</rss>

