<?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: problem with screen input in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-screen-input/m-p/1275872#M151497</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Rani,&lt;/P&gt;&lt;P&gt;With the code that you have posted, there will be no action when any of the radio buttons is clicked. Do you want to instead refer to the event ' AT SELECTION SCREEN ON...'?&lt;/P&gt;&lt;P&gt;Please post complete scenario.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Apr 2006 12:35:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-04-25T12:35:47Z</dc:date>
    <item>
      <title>problem with screen input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-screen-input/m-p/1275869#M151494</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK bl1 WITH FRAME TITLE gv_title.&lt;/P&gt;&lt;P&gt;PARAMETERS: z_period LIKE zcal_mstr-zsite.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : zdate FOR sy-datum MODIF ID GR1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK bl1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK bl2 WITH FRAME TITLE g_title.&lt;/P&gt;&lt;P&gt;PARAMETERS: m_but RADIOBUTTON GROUP rad1.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_but RADIOBUTTON GROUP rad1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK bl2.&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 NOT w_but IS INITIAL.&lt;/P&gt;&lt;P&gt;    PERFORM zzzz.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF NOT m_but IS INITIAL.&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     IF screen-group1 &amp;lt;&amp;gt; 'GR1'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        screen-input = '1'.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     ENDIF.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;    INCLUDE zfind_month.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i click on the 2 button i get near zdate another paramter&lt;/P&gt;&lt;P&gt;where he come from?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Apr 2006 12:27:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-screen-input/m-p/1275869#M151494</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-25T12:27:15Z</dc:date>
    </item>
    <item>
      <title>Re: problem with screen input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-screen-input/m-p/1275870#M151495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi rani,&lt;/P&gt;&lt;P&gt;Instead of screen-input use screen active.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is because a selection screen variable has one or more components...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN BEGIN OF BLOCK bl1 WITH FRAME TITLE gv_title.
PARAMETERS: z_period LIKE zcal_mstr-zsite.
SELECT-OPTIONS : zdate FOR sy-datum MODIF ID GR1.
SELECTION-SCREEN END OF BLOCK bl1.



SELECTION-SCREEN BEGIN OF BLOCK bl2 WITH FRAME TITLE g_title.
PARAMETERS: m_but RADIOBUTTON GROUP rad1.
PARAMETERS: p_but RADIOBUTTON GROUP rad1.
SELECTION-SCREEN END OF BLOCK bl2.

AT SELECTION-SCREEN.

IF NOT w_but IS INITIAL.
PERFORM zzzz.
ENDIF.

IF NOT m_but IS INITIAL.
LOOP AT SCREEN.
* IF screen-group1 &amp;lt;&amp;gt; 'GR1'.
screen-active = '0'.
MODIFY SCREEN.
* ENDIF.
ENDLOOP.
INCLUDE zfind_month.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Apr 2006 12:30:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-screen-input/m-p/1275870#M151495</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-25T12:30:23Z</dc:date>
    </item>
    <item>
      <title>Re: problem with screen input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-screen-input/m-p/1275871#M151496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IF screen-group1 &amp;lt;&amp;gt; 'GR1'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;lt;b&amp;gt;screen-active= '0/1'.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;screen-input = '1'.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Apr 2006 12:31:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-screen-input/m-p/1275871#M151496</guid>
      <dc:creator>vinod_gunaware2</dc:creator>
      <dc:date>2006-04-25T12:31:43Z</dc:date>
    </item>
    <item>
      <title>Re: problem with screen input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-screen-input/m-p/1275872#M151497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Rani,&lt;/P&gt;&lt;P&gt;With the code that you have posted, there will be no action when any of the radio buttons is clicked. Do you want to instead refer to the event ' AT SELECTION SCREEN ON...'?&lt;/P&gt;&lt;P&gt;Please post complete scenario.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Apr 2006 12:35:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-screen-input/m-p/1275872#M151497</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-25T12:35:47Z</dc:date>
    </item>
  </channel>
</rss>

