<?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: Selection Screen Option in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-option/m-p/2414022#M538706</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the following code for ur requirement :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT zrjntrial_tree LINE-COUNT 65&lt;/P&gt;&lt;P&gt;LINE-SIZE 80&lt;/P&gt;&lt;P&gt;NO STANDARD PAGE&lt;/P&gt;&lt;P&gt;HEADING.&lt;/P&gt;&lt;P&gt;*********************************************************************&lt;/P&gt;&lt;P&gt;TABLES : vbrk.&lt;/P&gt;&lt;P&gt;PARAMETERS : p_radio AS CHECKBOX USER-COMMAND opt1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : s_vbeln FOR vbrk-vbeln,&lt;/P&gt;&lt;P&gt;                 s_fkdat FOR vbrk-fkdat.&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 = 'S_FKDAT-LOW' OR screen-name = 'S_FKDAT-HIGH'&lt;/P&gt;&lt;P&gt;    or  screen-name = '%_S_FKDAT_%_APP_%-TEXT' or screen-name = '%_S_FKDAT_%_APP_%-OPTI_PUSH'&lt;/P&gt;&lt;P&gt;    or  screen-name = '%_S_FKDAT_%_APP_%-TO_TEXT' or screen-name = '%_S_FKDAT_%_APP_%-VALU_PUSH'.&lt;/P&gt;&lt;P&gt;      IF p_radio IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;        screen-input = 1.&lt;/P&gt;&lt;P&gt;        screen-output = 1.&lt;/P&gt;&lt;P&gt;        screen-invisible = 0.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        screen-input = 0.&lt;/P&gt;&lt;P&gt;        screen-output = 0.&lt;/P&gt;&lt;P&gt;        screen-invisible = 1.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&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;Himanshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Jul 2007 07:52:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-05T07:52:33Z</dc:date>
    <item>
      <title>Selection Screen Option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-option/m-p/2414017#M538701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI.. I'd like to know how to make it possible..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[X] ---stand for radiobutton&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[  ] Yes&lt;/P&gt;&lt;P&gt;[X] No&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to make that ..the shipment date range input field is appeared..after choosing "Yes"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[X] Yes     (in the same row)   Shipment Date ________ to __________ ( select-options: sp_fkdat for vbrk-fkdat. )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; any advices?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2007 07:27:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-option/m-p/2414017#M538701</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-05T07:27:34Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-option/m-p/2414018#M538702</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;u can use loop at screen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if yes,&lt;/P&gt;&lt;P&gt;secreen-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;&lt;/P&gt;&lt;P&gt;reward points if helpful,&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;seshu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2007 07:30:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-option/m-p/2414018#M538702</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-05T07:30:36Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-option/m-p/2414019#M538703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if r_radio = 'X'.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'S_DATE'.&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;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpful replies.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2007 07:30:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-option/m-p/2414019#M538703</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2007-07-05T07:30:37Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-option/m-p/2414020#M538704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use selection-screen output event.'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there you can put a check on the value of radiobuttons and modify the screen as per your liking.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards &lt;/P&gt;&lt;P&gt;vijai&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward pnts if useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2007 07:32:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-option/m-p/2414020#M538704</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-05T07:32:33Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-option/m-p/2414021#M538705</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;To display it in the same row,Define the radio button and shipment date within Begin of line and end of line statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Selection-screen:Begin of line. &lt;/P&gt;&lt;P&gt;&amp;lt;radio button&amp;gt;Declaration&lt;/P&gt;&lt;P&gt;select-options: sp_fkdat for vbrk-fkdat. &lt;/P&gt;&lt;P&gt;Selection-screen:End of line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and to hide and show the shipment date use loop at screen statement as mentioned by Experts.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2007 07:37:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-option/m-p/2414021#M538705</guid>
      <dc:creator>former_member491305</dc:creator>
      <dc:date>2007-07-05T07:37:20Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-option/m-p/2414022#M538706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the following code for ur requirement :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT zrjntrial_tree LINE-COUNT 65&lt;/P&gt;&lt;P&gt;LINE-SIZE 80&lt;/P&gt;&lt;P&gt;NO STANDARD PAGE&lt;/P&gt;&lt;P&gt;HEADING.&lt;/P&gt;&lt;P&gt;*********************************************************************&lt;/P&gt;&lt;P&gt;TABLES : vbrk.&lt;/P&gt;&lt;P&gt;PARAMETERS : p_radio AS CHECKBOX USER-COMMAND opt1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : s_vbeln FOR vbrk-vbeln,&lt;/P&gt;&lt;P&gt;                 s_fkdat FOR vbrk-fkdat.&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 = 'S_FKDAT-LOW' OR screen-name = 'S_FKDAT-HIGH'&lt;/P&gt;&lt;P&gt;    or  screen-name = '%_S_FKDAT_%_APP_%-TEXT' or screen-name = '%_S_FKDAT_%_APP_%-OPTI_PUSH'&lt;/P&gt;&lt;P&gt;    or  screen-name = '%_S_FKDAT_%_APP_%-TO_TEXT' or screen-name = '%_S_FKDAT_%_APP_%-VALU_PUSH'.&lt;/P&gt;&lt;P&gt;      IF p_radio IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;        screen-input = 1.&lt;/P&gt;&lt;P&gt;        screen-output = 1.&lt;/P&gt;&lt;P&gt;        screen-invisible = 0.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        screen-input = 0.&lt;/P&gt;&lt;P&gt;        screen-output = 0.&lt;/P&gt;&lt;P&gt;        screen-invisible = 1.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&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;Himanshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2007 07:52:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-option/m-p/2414022#M538706</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-05T07:52:33Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-option/m-p/2414023#M538707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is the Code   ...&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;report zaseqa .
tables: vbrk.

parameter : R1   radiobutton  group G1 ,
            R2      radiobutton   group G1  DefaULt 'X' .
SELECT-OPTIONS : sp_fkdat for vbrk-fkdat .

at selection-screen output.

if   R1 =  ' '.
loop at screen.
if screen-name = 'SP_FKDAT-LOW'.
screen-active = '0'.
ELSEif screen-name = 'SP_FKDAT-HIGH'.
screen-active = '0'.

endif.
modify screen.
endloop.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward  points if it is usefull ...&lt;/P&gt;&lt;P&gt;Girish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2007 08:30:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-option/m-p/2414023#M538707</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-05T08:30:25Z</dc:date>
    </item>
  </channel>
</rss>

