<?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: Dynamic selection screen. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265738#M1215879</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;PRE&gt;&lt;CODE&gt;at selection-screen output.

"  NOTE : Modif ID for all the select-options in the block 2 should have the same value for example BL2 
" and all the select-options for block3 should have the same value for example BL3.

if radio1 = 'X'.
loop at screen.
  if screen-group1 = 'Modif ID the select options of Block 3'.
      screen-active = 0.
      modify screen.
  endif.
endloop.
else.
loop at screen.
  if screen-group1 = 'Modif ID the select options of Block 2'.
      screen-active = 0.
      modify screen.
  endif.
endloop.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siddarth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 28 Feb 2009 10:29:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-28T10:29:35Z</dc:date>
    <item>
      <title>Dynamic selection screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265736#M1215877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus,&lt;/P&gt;&lt;P&gt;My requirement as follows...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Block 1 contains 2 radio buttons.&lt;/P&gt;&lt;P&gt;Block 2 contains couple of select options.&lt;/P&gt;&lt;P&gt;Block 3 contains couple of different select options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First radio button is set as default. so Block 2 should appear below block 1 as default.&lt;/P&gt;&lt;P&gt;If second radio button is selected Block 2 should be hidden and Block 3 should appear in the place of &lt;/P&gt;&lt;P&gt;Block 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Depending upon the Select options the report continues.&lt;/P&gt;&lt;P&gt;Please Help me out on this issue.&lt;/P&gt;&lt;P&gt;(I found few questions same as this previously posted but didnt exactly the same).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Awaiting for early replies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;deep.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Feb 2009 10:08:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265736#M1215877</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-28T10:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selection screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265737#M1215878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Plz try this code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

REPORT  ZTEST_CHECK                             .


parameters: p_sale radiobutton group g1 user-command ABC default 'X',
            p_mate radiobutton group g1 .

selection-screen: begin of block b0 with frame.
parameters: p_vbeln like vbak-vbeln modif id ABC.
selection-screen: end of block b0.

selection-screen: begin of block b1 with frame.
parameters :  p_matnr like mara-matnr modif id XYZ.
selection-screen: end of block b1.



at selection-screen output.

if p_sale = 'X'.

loop at screen.
if screen-group1 = 'ABC'.
screen-active = 0.
endif.
modify screen.
endloop.
endif.

if p_mate = 'X'.
loop at screen.
if screen-group1 = 'XYZ'.
screen-active = 0.
endif.
modify screen.
endloop.
endif.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Feb 2009 10:26:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265737#M1215878</guid>
      <dc:creator>kanishakgupta1</dc:creator>
      <dc:date>2009-02-28T10:26:44Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selection screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265738#M1215879</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;PRE&gt;&lt;CODE&gt;at selection-screen output.

"  NOTE : Modif ID for all the select-options in the block 2 should have the same value for example BL2 
" and all the select-options for block3 should have the same value for example BL3.

if radio1 = 'X'.
loop at screen.
  if screen-group1 = 'Modif ID the select options of Block 3'.
      screen-active = 0.
      modify screen.
  endif.
endloop.
else.
loop at screen.
  if screen-group1 = 'Modif ID the select options of Block 2'.
      screen-active = 0.
      modify screen.
  endif.
endloop.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siddarth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Feb 2009 10:29:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265738#M1215879</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-28T10:29:35Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selection screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265739#M1215880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;Test the following code&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES: kna1 , pa0001.


PARAMETERS: rd1 RADIOBUTTON GROUP g1 USER-COMMAND cmd DEFAULT 'X',
            rd2 RADIOBUTTON GROUP g1 .

SELECTION-SCREEN: BEGIN OF BLOCK block1 WITH FRAME.

SELECT-OPTIONS:kunnr FOR kna1-kunnr MODIF ID s1.
SELECT-OPTIONS:name1 FOR kna1-name1 MODIF ID s1.
SELECT-OPTIONS:name2 FOR kna1-name2 MODIF ID s1.

SELECTION-SCREEN: END OF BLOCK block1.


SELECTION-SCREEN: BEGIN OF BLOCK block2 WITH FRAME.

SELECT-OPTIONS:pernr FOR pa0001-pernr MODIF ID s2.
SELECT-OPTIONS:begda FOR pa0001-begda MODIF ID s2.
SELECT-OPTIONS:endda FOR pa0001-endda MODIF ID s2.

SELECTION-SCREEN: END OF BLOCK block2.



AT SELECTION-SCREEN OUTPUT.

  IF rd1 = 'X'.

    LOOP AT SCREEN.
      IF screen-group1 = 'S2'.
        screen-active = 0.
      ENDIF.
      MODIFY SCREEN.
    ENDLOOP.
  ENDIF.

  IF rd2 = 'X'.
    LOOP AT SCREEN.
      IF screen-group1 = 'S1'.
        screen-active = 0.
      ENDIF.
      MODIFY SCREEN.
    ENDLOOP.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Feb 2009 10:39:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265739#M1215880</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-28T10:39:49Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selection screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265740#M1215881</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;Thanks for all you replies.....The code works well....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But still there is a problem.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;In block 2 there is an obligatory field (mandatory)&lt;/STRONG&gt;, so if i check the  second radio button it prompts me to enter a value in that field and doesnt gets changed to block 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note :Block 3 also contains an obligatory field.&lt;/P&gt;&lt;P&gt;(On removing this obligatory field the code works well...)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;deep.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Feb 2009 11:09:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265740#M1215881</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-28T11:09:48Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selection screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265741#M1215882</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;Check this code.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK 001.&lt;/P&gt;&lt;P&gt;PARAMETERS: P_MRU  RADIOBUTTON GROUP SEL DEFAULT 'X' USER-COMMAND AC,&lt;/P&gt;&lt;P&gt;            P_PART RADIOBUTTON GROUP SEL.&lt;/P&gt;&lt;P&gt;    SELECT-OPTIONS P1 FOR &amp;lt;field&amp;gt; MODIF ID PRT.&lt;/P&gt;&lt;P&gt;    SELECT-OPTIONS P2 FOR &amp;lt;field&amp;gt; MODIF ID PRT.&lt;/P&gt;&lt;P&gt;    SELECT-OPTIONS G1 FOR &amp;lt;field&amp;gt;  MODIF ID MRU.&lt;/P&gt;&lt;P&gt;    SELECT-OPTIONS G2 FOR &amp;lt;field&amp;gt;  MODIF ID MRU.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK 001.&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 P_MRU = 'X'.&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF SCREEN-GROUP1 = 'PRT'.&lt;/P&gt;&lt;P&gt;        SCREEN-INPUT = '0'.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;      IF SCREEN-GROUP1 = 'MRU'.&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;  ELSEIF P_PART = 'X'.&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;     IF SCREEN-GROUP1 = 'MRU'.&lt;/P&gt;&lt;P&gt;       SCREEN-INPUT = '0'.&lt;/P&gt;&lt;P&gt;     ENDIF.&lt;/P&gt;&lt;P&gt;     IF SCREEN-GROUP1 = 'PRT'.&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;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bharat Kalagara.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Feb 2009 11:13:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265741#M1215882</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-28T11:13:45Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selection screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265742#M1215883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bharat ,&lt;/P&gt;&lt;P&gt;Please check my previous comment....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;But still there is a problem.
In block 2 there is an obligatory field (mandatory), so if i check the second radio button it prompts me to enter a value in that field and doesnt gets changed to block 3.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Feb 2009 11:42:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265742#M1215883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-28T11:42:28Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selection screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265743#M1215884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;have u checked my code.&lt;/P&gt;&lt;P&gt;plz check it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Feb 2009 12:10:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265743#M1215884</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-28T12:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selection screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265744#M1215885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi tahir naqqash ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ya i have checked your code too....&lt;/P&gt;&lt;P&gt;It works fine if there is no mandatory field in the selection screen.but i do have a mandatory field in block 2.Help me sort out this problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Feb 2009 12:20:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265744#M1215885</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-28T12:20:00Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selection screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265745#M1215886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;" Hi just change the block 2 as
just write obligatory if u want with any field

SELECTION-SCREEN: BEGIN OF BLOCK block2 WITH FRAME.

SELECT-OPTIONS:pernr FOR pa0001-pernr      OBLIGATORY  MODIF ID s2.
SELECT-OPTIONS:begda FOR pa0001-begda   OBLIGATORY  MODIF ID s2.
SELECT-OPTIONS:endda FOR pa0001-endda   OBLIGATORY  MODIF ID s2.

SELECTION-SCREEN: END OF BLOCK block2.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Feb 2009 12:24:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265745#M1215886</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-28T12:24:07Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selection screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265746#M1215887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do one thing when u r looping at screen just assign some value to the mandatory field at once in ur code itself and then later clear it. so that the changing of blocks happen smoothely.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="16" __jive_macro_name="size"&gt;кu03B1ятu03B9к&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Feb 2009 12:30:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265746#M1215887</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-28T12:30:33Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selection screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265747#M1215888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi tahir....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is made obligatory there,While selecting radio button 2 , the block 2 doesnt disappear prompting me to enter something in the obligatory fields...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to surpass this obligatory check.?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Feb 2009 12:31:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265747#M1215888</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-28T12:31:43Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selection screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265748#M1215889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;provide values to the obligatory field thru ur coding itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like s_vbeln = '00000000'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anyways since u wont be using this block so no effect on ur code's working whatever value u give, and later if u want u mat clear it too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="16" __jive_macro_name="size"&gt;кu03B1ятu03B9к&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Feb 2009 12:44:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265748#M1215889</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-28T12:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selection screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265749#M1215890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Now change it as.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN: BEGIN OF BLOCK block2 WITH FRAME.

SELECT-OPTIONS:pernr FOR pa0001-pernr DEFAULT '1234'  MODIF ID s2.
SELECT-OPTIONS:begda FOR pa0001-begda  DEFAULT '20081201'  MODIF ID s2.
SELECT-OPTIONS:endda FOR pa0001-endda DEFAULT '20081201'  MODIF ID s2.

SELECTION-SCREEN: END OF BLOCK block2.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;if it is not so as u required, then please make more clear what actually u want&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Feb 2009 12:50:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen/m-p/5265749#M1215890</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-28T12:50:27Z</dc:date>
    </item>
  </channel>
</rss>

