<?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 about selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen/m-p/2205033#M471502</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how to set mandatory field in selection screen while runtime?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 May 2007 06:17:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-08T06:17:21Z</dc:date>
    <item>
      <title>about selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen/m-p/2205033#M471502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how to set mandatory field in selection screen while runtime?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 06:17:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen/m-p/2205033#M471502</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T06:17:21Z</dc:date>
    </item>
    <item>
      <title>Re: about selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen/m-p/2205034#M471503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bindu,&lt;/P&gt;&lt;P&gt;               u will use Obligatory Key word along with ur parameter ,or select-option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thnaks &amp;amp; Regards'&lt;/P&gt;&lt;P&gt;Bhaskar Rao.M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 06:20:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen/m-p/2205034#M471503</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T06:20:37Z</dc:date>
    </item>
    <item>
      <title>Re: about selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen/m-p/2205035#M471504</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;one option statically&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters : p_matnr like mara-matnr [obligatory].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;other way.&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 screen-name = 'P_MATNR'.&lt;/P&gt;&lt;P&gt;screen-required = '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;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 06:21:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen/m-p/2205035#M471504</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T06:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: about selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen/m-p/2205036#M471505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bindu,&lt;/P&gt;&lt;P&gt;            please find the code below for setting a selectio-screen field mandatory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    PARAMETERS:&lt;/P&gt;&lt;P&gt;pa_check TYPE c.&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;CASE screen-name.&lt;/P&gt;&lt;P&gt;WHEN 'PA_CHECK'.&lt;/P&gt;&lt;P&gt;screen-required = '1'.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;ENDLOOP.&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;    kishor.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 06:21:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen/m-p/2205036#M471505</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T06:21:09Z</dc:date>
    </item>
    <item>
      <title>Re: about selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen/m-p/2205037#M471506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bindu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Good Check the following example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  TYPES: tt_selection TYPE STANDARD TABLE OF rsparams.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: l_iblnr        TYPE st_iblnr,&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    Define internal table and work area for select-options&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        l_selection    TYPE rsparams,&lt;/P&gt;&lt;P&gt;        li_selection   TYPE tt_selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Create selectIon table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  LOOP AT gi_iblnr INTO l_iblnr.&lt;/P&gt;&lt;P&gt;    CLEAR l_selection.&lt;/P&gt;&lt;P&gt;    l_selection-selname  = 'IM_IBLNR'.    "Option name&lt;/P&gt;&lt;P&gt;    l_selection-kind     = 'S'.           "S= select options P=Parameters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    l_selection-sign     = 'I'.           "Sign&lt;/P&gt;&lt;P&gt;    l_selection-option   = 'EQ'.          "Option &lt;/P&gt;&lt;P&gt;    l_selection-low      = l_iblnr-iblnr. "Value&lt;/P&gt;&lt;P&gt;    APPEND l_selection TO li_selection.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good Luck and thanks&lt;/P&gt;&lt;P&gt;AK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 06:21:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen/m-p/2205037#M471506</guid>
      <dc:creator>ashok_kumar24</dc:creator>
      <dc:date>2007-05-08T06:21:19Z</dc:date>
    </item>
    <item>
      <title>Re: about selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen/m-p/2205038#M471507</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;   welcme to SDN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  You change the progperties of screen in loop at screen.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;Give a modif id to the field .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in loop at screen change the field property required to '1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF screen-group1 = 'MOD'.&lt;/P&gt;&lt;P&gt;      IF flag = ' '.&lt;/P&gt;&lt;P&gt;        screen-required = '0'.&lt;/P&gt;&lt;P&gt;      ELSEIF flag = 'X'.&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;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;veeresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 06:22:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen/m-p/2205038#M471507</guid>
      <dc:creator>former_member673464</dc:creator>
      <dc:date>2007-05-08T06:22:15Z</dc:date>
    </item>
    <item>
      <title>Re: about selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen/m-p/2205039#M471508</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 keyword&lt;/P&gt;&lt;P&gt;e.g. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select-options: s_matnr like for mara-matnr OBLIGATORY.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 06:23:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen/m-p/2205039#M471508</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T06:23:04Z</dc:date>
    </item>
    <item>
      <title>Re: about selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen/m-p/2205040#M471509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bindu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just copy and paste this program, Click p_set radio button on the selection screen.&lt;/P&gt;&lt;P&gt;You can see the parameter p_number is converted to the mandatory one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters:&lt;/P&gt;&lt;P&gt;    p_number TYPE i,&lt;/P&gt;&lt;P&gt;    p_set   RADIOBUTTON GROUP g1 USER-COMMAND us1,&lt;/P&gt;&lt;P&gt;    p_unset RADIOBUTTOn GROUP g1 default 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;  w_flag TYPE i.&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;&lt;/P&gt;&lt;P&gt;   IF SCREEN-NAME = 'P_NUMBER' AND w_flag = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     SCREEN-REQUIRED = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ENDLOOP.&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 p_set EQ 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   w_flag = 1.&lt;/P&gt;&lt;P&gt;&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;Regards,&lt;/P&gt;&lt;P&gt;V.raghavender.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 06:27:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen/m-p/2205040#M471509</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T06:27:28Z</dc:date>
    </item>
    <item>
      <title>Re: about selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen/m-p/2205041#M471510</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;selection-screen : begin of block blk1 with frame title text-001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters : p_matnr like mara-matnr obligatory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options : s_werks like marc-werks obligatory.&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;reward with points if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 06:41:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen/m-p/2205041#M471510</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T06:41:42Z</dc:date>
    </item>
    <item>
      <title>Re: about selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen/m-p/2205042#M471511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ThankU.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 06:49:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen/m-p/2205042#M471511</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T06:49:55Z</dc:date>
    </item>
  </channel>
</rss>

