<?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 Subscreen Radiobuttons in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-subscreen-radiobuttons/m-p/3823671#M919571</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;  did u put call subscreen stmt in pai also, because if u have kept that stmt in pai then what ever actions u take in the screen are reflected in the corresponding parameters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 May 2008 10:40:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-21T10:40:11Z</dc:date>
    <item>
      <title>Problem with Subscreen Radiobuttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-subscreen-radiobuttons/m-p/3823667#M919567</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;I've defined a subscreen in a module pool program TOP include as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECTION-SCREEN BEGIN OF SCREEN 0101 AS SUBSCREEN.
SELECT-OPTIONS: s_bukrs FOR regup-zbukr,
                s_date FOR regup-laufd,
                s_code FOR zhsbc_bansta-code_no.
PARAMETERS: r_bansta RADIOBUTTON GROUP r1,
            r_contrl RADIOBUTTON GROUP r1.
SELECTION-SCREEN END OF SCREEN 0101.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and called the subscreen in my screen 0100 as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  CALL SUBSCREEN screen_0101
       INCLUDING 'Z99FI_HSBC_FILE_REPORTING' '0101'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This all works fine.  But when I press execute on screen 0100 and debug, both radiobuttons (r_bansta and r_contrl) are empty even though I changed the default selected one to r_contrl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do I have to do something to make these parameters available to my PAI on screen 0100?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gill&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 10:02:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-subscreen-radiobuttons/m-p/3823667#M919567</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T10:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Subscreen Radiobuttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-subscreen-radiobuttons/m-p/3823668#M919568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In this Specify one as Default like:&lt;/P&gt;&lt;P&gt;PARAMETERS: r_bansta RADIOBUTTON GROUP r1 default 'X,&lt;/P&gt;&lt;P&gt;            r_contrl RADIOBUTTON GROUP r1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then it can be filled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shiva Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 10:08:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-subscreen-radiobuttons/m-p/3823668#M919568</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T10:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Subscreen Radiobuttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-subscreen-radiobuttons/m-p/3823669#M919569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I amended my code to be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECTION-SCREEN BEGIN OF SCREEN 0101 AS SUBSCREEN.
*PARAMETERS: g_file LIKE user_dir-dirname.
SELECT-OPTIONS: s_bukrs FOR regup-zbukr,
                s_date FOR regup-laufd,
                s_code FOR zhsbc_bansta-code_no.
PARAMETERS: r_bansta RADIOBUTTON GROUP r1 DEFAULT 'X',
            r_contrl RADIOBUTTON GROUP r1.
SELECTION-SCREEN END OF SCREEN 0101.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However now r_bansta is always 'X' even when I change the selection to be r_contrl.  How can I get it to pick up the correct values from the selection screen?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 10:12:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-subscreen-radiobuttons/m-p/3823669#M919569</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T10:12:12Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Subscreen Radiobuttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-subscreen-radiobuttons/m-p/3823670#M919570</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;if first radiobutton eq 'x'. &lt;/P&gt;&lt;P&gt;write your functionality.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for that radio button is having fctcode also .&lt;/P&gt;&lt;P&gt;use that  fctcode is for mainly push buttons.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like this you can approach.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 10:27:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-subscreen-radiobuttons/m-p/3823670#M919570</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T10:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Subscreen Radiobuttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-subscreen-radiobuttons/m-p/3823671#M919571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;  did u put call subscreen stmt in pai also, because if u have kept that stmt in pai then what ever actions u take in the screen are reflected in the corresponding parameters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 10:40:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-subscreen-radiobuttons/m-p/3823671#M919571</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T10:40:11Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Subscreen Radiobuttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-subscreen-radiobuttons/m-p/3823672#M919572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gill.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While in debug, have you notice if the other fields are populated correctly when you process the screen?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just curious if it is just the RBs or all fields.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 10:48:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-subscreen-radiobuttons/m-p/3823672#M919572</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T10:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Subscreen Radiobuttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-subscreen-radiobuttons/m-p/3823673#M919573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry I don't understand what you're trying to say.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I go into debug I type the field names R_BANSTA and R_CONTRL into the spaces at the bottom of the screen to view their values.  This is where I can see that the value for R_BANSTA is always X even if I select R_CONTRL on the selection screen at runtime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code which follows is not applicable as the values are wrong.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 10:48:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-subscreen-radiobuttons/m-p/3823673#M919573</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T10:48:43Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Subscreen Radiobuttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-subscreen-radiobuttons/m-p/3823674#M919574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My question involves these fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECT-OPTIONS: s_bukrs FOR regup-zbukr,
                s_date FOR regup-laufd,
                s_code FOR zhsbc_bansta-code_no.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you change the values do these fields also have the same issue?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 10:55:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-subscreen-radiobuttons/m-p/3823674#M919574</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T10:55:17Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Subscreen Radiobuttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-subscreen-radiobuttons/m-p/3823675#M919575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Gaddameedi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I put:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL SUBSCREEN screen_0101.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the PAI of screen 0100 and it sorted my problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 10:57:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-subscreen-radiobuttons/m-p/3823675#M919575</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T10:57:03Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Subscreen Radiobuttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-subscreen-radiobuttons/m-p/3823676#M919576</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 this:&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.sdn.sap.com/click.jspa?searchID=12027265&amp;amp;messageID=3706565" target="test_blank"&gt;https://forums.sdn.sap.com/click.jspa?searchID=12027265&amp;amp;messageID=3706565&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;shiva Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 11:13:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-subscreen-radiobuttons/m-p/3823676#M919576</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T11:13:04Z</dc:date>
    </item>
  </channel>
</rss>

