<?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: Using At Selection-Screen on radiobutton.... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-at-selection-screen-on-radiobutton/m-p/1364373#M180455</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Fred,&lt;/P&gt;&lt;P&gt;You can also use something like the following to combine Sandips approach with your request to clear the value.  This is a cut/paste from an existing program of mine -- apologies if I left something out, but you'll get the idea.&lt;/P&gt;&lt;P&gt;-d&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK B WITH FRAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter: rsearch radiobutton group A&lt;/P&gt;&lt;P&gt;                    user-command c_sel&lt;/P&gt;&lt;P&gt;                    default 'X'&lt;/P&gt;&lt;P&gt;                    modif id sel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options: sebeln  for ekko-ebeln modif id SHO,&lt;/P&gt;&lt;P&gt;                slifnr  for ekko-lifnr modif id SHO,&lt;/P&gt;&lt;P&gt;                sbox    for zpoarchive-box modif id SHO,&lt;/P&gt;&lt;P&gt;                sqqyyyy for zpoarchive-qqyyyy modif id SHO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen uline.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter: RUPLOAD  RADIOBUTTON GROUP A modif id sel.&lt;/P&gt;&lt;P&gt;parameter: rchange  radiobutton group A modif id sel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter:  pqqyyyy like zpoarchive-qqyyyy modif id CHG,&lt;/P&gt;&lt;P&gt;            pbox    like zpoarchive-box modif id CHG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter:  FILENAME(128)  TYPE C&lt;/P&gt;&lt;P&gt;             default 'c:\temp\ponums.xls'&lt;/P&gt;&lt;P&gt;             modif id CHG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of line.&lt;/P&gt;&lt;P&gt;selection-screen comment 32(40) text-001.&lt;/P&gt;&lt;P&gt;selection-screen end of line.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK B.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at screen.&lt;/P&gt;&lt;P&gt;    if screen-group1 eq 'SHO'.&lt;/P&gt;&lt;P&gt;      check screen-name ns '-opti_push'.&lt;/P&gt;&lt;P&gt;      if rsearch = 'X'.&lt;/P&gt;&lt;P&gt;        screen-input = 1.&lt;/P&gt;&lt;P&gt;      else.&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;    elseif screen-group1 eq 'CHG'.&lt;/P&gt;&lt;P&gt;      check screen-name ns '-opti_push'.&lt;/P&gt;&lt;P&gt;      if rsearch &amp;lt;&amp;gt; 'X'.&lt;/P&gt;&lt;P&gt;        screen-input = 1.&lt;/P&gt;&lt;P&gt;      else.&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;    endif.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  if rupload = 'X'.&lt;/P&gt;&lt;P&gt;    filename = 'upload'.&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;    filename = ''.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 May 2006 22:35:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-05-05T22:35:45Z</dc:date>
    <item>
      <title>Using At Selection-Screen on radiobutton....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-at-selection-screen-on-radiobutton/m-p/1364367#M180449</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 the following paramters:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P_LOCAL RADIOBUTTON GROUP RB1 DEFAULT 'X' USER-COMMAND FLAG,  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P_UNIX RADIOBUTTON GROUP RB1,                                             &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P_INFILE(80) VISIBLE LENGTH 41 LOWER CASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I use: AT SELECTION-SCREEN ON RADIOBUTTON GROUP  so that when switching the radiobuttons, the file-path clears.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Fred.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 May 2006 22:15:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-at-selection-screen-on-radiobutton/m-p/1364367#M180449</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-05T22:15:23Z</dc:date>
    </item>
    <item>
      <title>Re: Using At Selection-Screen on radiobutton....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-at-selection-screen-on-radiobutton/m-p/1364368#M180450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. &lt;/P&gt;&lt;P&gt;PARAMETERS: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P_LOCAL RADIOBUTTON GROUP RB1 DEFAULT 'X' USER-COMMAND FLAG , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P_UNIX RADIOBUTTON GROUP RB1, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P_INFILE(80) VISIBLE LENGTH 41 LOWER CASE modif id md.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. 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-group1.&lt;/P&gt;&lt;P&gt;      WHEN 'MD'.&lt;/P&gt;&lt;P&gt;        IF P_LOCAL = 'X'.&lt;/P&gt;&lt;P&gt;          screen-active = 1.&lt;/P&gt;&lt;P&gt;        ELSE.&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;    ENDCASE.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 May 2006 22:23:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-at-selection-screen-on-radiobutton/m-p/1364368#M180450</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-05T22:23:31Z</dc:date>
    </item>
    <item>
      <title>Re: Using At Selection-Screen on radiobutton....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-at-selection-screen-on-radiobutton/m-p/1364369#M180451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Fred,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should be able to do something like this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;  if p_unix = 'X'.&lt;/P&gt;&lt;P&gt;    p_infile = ''.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Den&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 May 2006 22:26:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-at-selection-screen-on-radiobutton/m-p/1364369#M180451</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-05T22:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: Using At Selection-Screen on radiobutton....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-at-selection-screen-on-radiobutton/m-p/1364370#M180452</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it not possible to use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON RADIOBUTTON???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 May 2006 22:26:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-at-selection-screen-on-radiobutton/m-p/1364370#M180452</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-05T22:26:37Z</dc:date>
    </item>
    <item>
      <title>Re: Using At Selection-Screen on radiobutton....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-at-selection-screen-on-radiobutton/m-p/1364371#M180453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nope &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try the code I gave you. Should work, if not, definitely let me know.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 May 2006 22:29:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-at-selection-screen-on-radiobutton/m-p/1364371#M180453</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-05T22:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: Using At Selection-Screen on radiobutton....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-at-selection-screen-on-radiobutton/m-p/1364372#M180454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;at selection-screen ON RADIOBUTTON GROUP rb1.&lt;/P&gt;&lt;P&gt;and based check which one = 'X' ,clear the path &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FYI.. Sandeep is right . You can not do this ...&lt;/P&gt;&lt;P&gt;you have to use loop at screen  and endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;SK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Saquib Khan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 May 2006 22:34:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-at-selection-screen-on-radiobutton/m-p/1364372#M180454</guid>
      <dc:creator>former_member181966</dc:creator>
      <dc:date>2006-05-05T22:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: Using At Selection-Screen on radiobutton....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-at-selection-screen-on-radiobutton/m-p/1364373#M180455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Fred,&lt;/P&gt;&lt;P&gt;You can also use something like the following to combine Sandips approach with your request to clear the value.  This is a cut/paste from an existing program of mine -- apologies if I left something out, but you'll get the idea.&lt;/P&gt;&lt;P&gt;-d&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK B WITH FRAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter: rsearch radiobutton group A&lt;/P&gt;&lt;P&gt;                    user-command c_sel&lt;/P&gt;&lt;P&gt;                    default 'X'&lt;/P&gt;&lt;P&gt;                    modif id sel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options: sebeln  for ekko-ebeln modif id SHO,&lt;/P&gt;&lt;P&gt;                slifnr  for ekko-lifnr modif id SHO,&lt;/P&gt;&lt;P&gt;                sbox    for zpoarchive-box modif id SHO,&lt;/P&gt;&lt;P&gt;                sqqyyyy for zpoarchive-qqyyyy modif id SHO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen uline.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter: RUPLOAD  RADIOBUTTON GROUP A modif id sel.&lt;/P&gt;&lt;P&gt;parameter: rchange  radiobutton group A modif id sel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter:  pqqyyyy like zpoarchive-qqyyyy modif id CHG,&lt;/P&gt;&lt;P&gt;            pbox    like zpoarchive-box modif id CHG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter:  FILENAME(128)  TYPE C&lt;/P&gt;&lt;P&gt;             default 'c:\temp\ponums.xls'&lt;/P&gt;&lt;P&gt;             modif id CHG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of line.&lt;/P&gt;&lt;P&gt;selection-screen comment 32(40) text-001.&lt;/P&gt;&lt;P&gt;selection-screen end of line.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK B.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at screen.&lt;/P&gt;&lt;P&gt;    if screen-group1 eq 'SHO'.&lt;/P&gt;&lt;P&gt;      check screen-name ns '-opti_push'.&lt;/P&gt;&lt;P&gt;      if rsearch = 'X'.&lt;/P&gt;&lt;P&gt;        screen-input = 1.&lt;/P&gt;&lt;P&gt;      else.&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;    elseif screen-group1 eq 'CHG'.&lt;/P&gt;&lt;P&gt;      check screen-name ns '-opti_push'.&lt;/P&gt;&lt;P&gt;      if rsearch &amp;lt;&amp;gt; 'X'.&lt;/P&gt;&lt;P&gt;        screen-input = 1.&lt;/P&gt;&lt;P&gt;      else.&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;    endif.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  if rupload = 'X'.&lt;/P&gt;&lt;P&gt;    filename = 'upload'.&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;    filename = ''.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 May 2006 22:35:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-at-selection-screen-on-radiobutton/m-p/1364373#M180455</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-05T22:35:45Z</dc:date>
    </item>
    <item>
      <title>Re: Using At Selection-Screen on radiobutton....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-at-selection-screen-on-radiobutton/m-p/1364374#M180456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yeah sandip, you're right and code worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;fred.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 May 2006 22:50:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-at-selection-screen-on-radiobutton/m-p/1364374#M180456</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-05T22:50:43Z</dc:date>
    </item>
  </channel>
</rss>

