<?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: Parameter on the selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-on-the-selection-screen/m-p/4021497#M960982</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;Heres the code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : parameter MODIF ID sg1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     If &amp;lt;checkbox&amp;gt; NE 'X'.&lt;/P&gt;&lt;P&gt;        LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;           IF screen-group1 = 'SG1'.&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;     else.&lt;/P&gt;&lt;P&gt;         if parameter is initial.&lt;/P&gt;&lt;P&gt;            message 'Pls fill the values' type '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;Thanks&lt;/P&gt;&lt;P&gt;Nayan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Jun 2008 08:12:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-23T08:12:27Z</dc:date>
    <item>
      <title>Parameter on the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-on-the-selection-screen/m-p/4021490#M960975</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 a check box and a parameter on the selection screen. If the checkbox is initial, the paramter shouldn't be editable but if the checkbox is ticked, the parameter should be made mandatory to be enetered with value. How can this be done ?&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2008 07:52:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-on-the-selection-screen/m-p/4021490#M960975</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-23T07:52:38Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter on the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-on-the-selection-screen/m-p/4021491#M960976</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;at selection on that radio button, check if it is initial then loop at screen, make that disable, if it is not initial then create some other parameter which is obligatory field, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if useful reward points..........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2008 07:59:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-on-the-selection-screen/m-p/4021491#M960976</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-23T07:59:13Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter on the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-on-the-selection-screen/m-p/4021492#M960977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there welcome to SDN check the rules of the community....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and to answer ur question check this [link|http://www.saptechnical.com/Tutorials/ABAP/DynamicSScreen/demo.htm]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2008 08:01:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-on-the-selection-screen/m-p/4021492#M960977</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-06-23T08:01:01Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter on the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-on-the-selection-screen/m-p/4021493#M960978</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;      Modify the screen fields in AT SELECTION_SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;&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 screen-group1 eq 'GRP1'.&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2008 08:02:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-on-the-selection-screen/m-p/4021493#M960978</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-23T08:02:00Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter on the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-on-the-selection-screen/m-p/4021494#M960979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After defining the check box and parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter: ch_bx as check box.&lt;/P&gt;&lt;P&gt;parameter: p_a type c modif id xyz obligatory.&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 ch_bx is initail.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if scrren-group1 = 'XYZ'.&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;else.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-group1 = 'xyz'.&lt;/P&gt;&lt;P&gt;screen-active = 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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2008 08:02:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-on-the-selection-screen/m-p/4021494#M960979</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-23T08:02:00Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter on the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-on-the-selection-screen/m-p/4021495#M960980</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;do this way ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
at selection-screen.
if not p_check is initial.
  if not p_price is initial.
  message e000(zfi) with 'Please Enter Price Field'.
 endif.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2008 08:02:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-on-the-selection-screen/m-p/4021495#M960980</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-23T08:02:22Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter on the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-on-the-selection-screen/m-p/4021496#M960981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Refer to the following code.In this change radiobuttons with the checkbox.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK B1.&lt;/P&gt;&lt;P&gt;parameters: p_erdat like zirpactivity-erdat modif id SC1 ,&lt;/P&gt;&lt;P&gt;            r1 radiobutton group RAD1 user-command ABC default 'X',&lt;/P&gt;&lt;P&gt;            r2 radiobutton group RAD1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK B1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;  check sy-ucomm = 'ABC'.&lt;/P&gt;&lt;P&gt;  check sy-ucomm = 'F8'.&lt;/P&gt;&lt;P&gt;&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  r1 = 'X' and screen-group1 = 'SC1' .&lt;/P&gt;&lt;P&gt;      screen-input = 0.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF r2 = 'X'.&lt;/P&gt;&lt;P&gt;           screen-group1 = 'SC1'  .&lt;/P&gt;&lt;P&gt;      screen-input = 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;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;Reward if helpful.'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sipra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2008 08:04:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-on-the-selection-screen/m-p/4021496#M960981</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-23T08:04:14Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter on the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-on-the-selection-screen/m-p/4021497#M960982</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;Heres the code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : parameter MODIF ID sg1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     If &amp;lt;checkbox&amp;gt; NE 'X'.&lt;/P&gt;&lt;P&gt;        LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;           IF screen-group1 = 'SG1'.&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;     else.&lt;/P&gt;&lt;P&gt;         if parameter is initial.&lt;/P&gt;&lt;P&gt;            message 'Pls fill the values' type '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;Thanks&lt;/P&gt;&lt;P&gt;Nayan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2008 08:12:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-on-the-selection-screen/m-p/4021497#M960982</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-23T08:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter on the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-on-the-selection-screen/m-p/4021498#M960983</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;Modify the screen fields in AT SELECTION-SCREEN OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: r1 as checkbox user-command abc,&lt;/P&gt;&lt;P&gt;                  p1(10).&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 is initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'P1'.&lt;/P&gt;&lt;P&gt;screen-input = '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;else.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'P1'.&lt;/P&gt;&lt;P&gt;screen-input = '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;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Ruthra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2008 08:15:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-on-the-selection-screen/m-p/4021498#M960983</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-23T08:15:58Z</dc:date>
    </item>
  </channel>
</rss>

