<?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: issue with selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-selection-screen/m-p/1855321#M361754</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deepthi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is because you will have values avialable for TEXT_001,TEXT_002,TEXT_003 and TEXT_004 globally,so inaddition to inacitving group, we have to clear values for respecitve group too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz do the changes as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF RAD1 = 'X'.&lt;/P&gt;&lt;P&gt;IF LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF SCREEN-GROUP1 = 'G2'.&lt;/P&gt;&lt;P&gt;SCREEN-ACTIVE = 1.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;CLEAR: TEXT-001,TEXT-002.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;ENDIF. ENDIF. ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF RAD2 = 'X'.&lt;/P&gt;&lt;P&gt;IF LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF SCREEN-GROUP1 = 'G1'.&lt;/P&gt;&lt;P&gt;SCREEN-ACTIVE = 1.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;CLEAR: TEXT-003,TEXT-004.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;ENDIF. ENDIF. ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Jan 2007 20:17:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-29T20:17:05Z</dc:date>
    <item>
      <title>issue with selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-selection-screen/m-p/1855319#M361752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;HI all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am having some problem with selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have three radio buttons on my selections creen , and upon selection of diffrent radio button the selection screen should change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initilly i will get a selections cren for the default selected radi button and when change the radio button i need to get diffrent selection screen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this works fine when i have the normal selection screen, but my problems is i have &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen : begin of block blk1 with frame title text-002.&lt;/P&gt;&lt;P&gt;selection-screen : skip 1.&lt;/P&gt;&lt;P&gt;selection-screen begin of line.&lt;/P&gt;&lt;P&gt;selection-screen comment 1(10) text_002.&lt;/P&gt;&lt;P&gt;parameters: p_MATNR  like MARA-MATNR modif id g1.&lt;/P&gt;&lt;P&gt;selection-screen comment 50(10) text_001.&lt;/P&gt;&lt;P&gt;parameters: p_MATNR1  like MARA-MATNR modif id g1.&lt;/P&gt;&lt;P&gt;selection-screen end of line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen : begin of block blk2 with frame title text-003.&lt;/P&gt;&lt;P&gt;selection-screen : skip 1.&lt;/P&gt;&lt;P&gt;selection-screen begin of line1.&lt;/P&gt;&lt;P&gt;selection-screen comment 1(10) text_003.&lt;/P&gt;&lt;P&gt;parameters: p_DATE  TYPE SY-DATUM modif id g2.&lt;/P&gt;&lt;P&gt;selection-screen comment 50(10) text_004.&lt;/P&gt;&lt;P&gt;parameters: p_DATE1  TYPE SY-DATUM modif id g2.&lt;/P&gt;&lt;P&gt;selection-screen end of line1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TEXT_004 IS DATE .&lt;/P&gt;&lt;P&gt;TEXT_003 IS DATE WITH .&lt;/P&gt;&lt;P&gt;TEXT_002 IS MATERIAL .&lt;/P&gt;&lt;P&gt;TEXT_001 IS MATERIAL WITH .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN I SELECT FIRST RADIO BUTTON ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I SEE 3 RADIO BUTTONS&lt;/P&gt;&lt;P&gt;ADN BELOW I SEE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MATERIAL  -&lt;/P&gt;&lt;HR originaltext="-------" /&gt;&lt;P&gt; WITH MATERIAL -&lt;/P&gt;&lt;HR originaltext="-----------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATE                WITH DATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I SHOULDNOT GET DATE AND DATE WITH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN I SELECT THE SECOND RADIO BUTTON I NEED TO SEE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATE -&lt;/P&gt;&lt;HR originaltext="----------" /&gt;&lt;P&gt;  WITH DATE -&lt;/P&gt;&lt;HR originaltext="----------------" /&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHAT I AM GETTING NOW FOR SECOND RADIO BUTTON IS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MATERIAL              WITH MATERIAL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATE -&lt;/P&gt;&lt;HR originaltext="----------" /&gt;&lt;P&gt;  WITH DATE -&lt;/P&gt;&lt;HR originaltext="----------------" /&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I AM USING THE FOLLOWING CODE 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;&lt;/P&gt;&lt;P&gt;IF RAD1 = 'X'.&lt;/P&gt;&lt;P&gt;IF LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF SCREEN-GROUP1 = 'G2'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SCREEN-ACTIVE = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF. ENDIF. ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 20:01:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-selection-screen/m-p/1855319#M361752</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-29T20:01:05Z</dc:date>
    </item>
    <item>
      <title>Re: issue with selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-selection-screen/m-p/1855320#M361753</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;Try this..Clear the text_001 and text_002..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF RAD1 = 'X'.&lt;/P&gt;&lt;P&gt;IF LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF SCREEN-GROUP1 = 'G2'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SCREEN-ACTIVE = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;  CLEAR: TEXT_001, TEXT_002.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF. &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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 20:07:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-selection-screen/m-p/1855320#M361753</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-29T20:07:06Z</dc:date>
    </item>
    <item>
      <title>Re: issue with selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-selection-screen/m-p/1855321#M361754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deepthi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is because you will have values avialable for TEXT_001,TEXT_002,TEXT_003 and TEXT_004 globally,so inaddition to inacitving group, we have to clear values for respecitve group too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz do the changes as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF RAD1 = 'X'.&lt;/P&gt;&lt;P&gt;IF LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF SCREEN-GROUP1 = 'G2'.&lt;/P&gt;&lt;P&gt;SCREEN-ACTIVE = 1.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;CLEAR: TEXT-001,TEXT-002.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;ENDIF. ENDIF. ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF RAD2 = 'X'.&lt;/P&gt;&lt;P&gt;IF LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF SCREEN-GROUP1 = 'G1'.&lt;/P&gt;&lt;P&gt;SCREEN-ACTIVE = 1.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;CLEAR: TEXT-003,TEXT-004.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;ENDIF. ENDIF. ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 20:17:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-selection-screen/m-p/1855321#M361754</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-29T20:17:05Z</dc:date>
    </item>
    <item>
      <title>Re: issue with selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-selection-screen/m-p/1855322#M361755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi , Narendran and  Vinay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I DID AS YOU GUYS TOLD ME . IT WORKS BUT IT LEAVES BEHIND THE BLOCK &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen : begin of block blk2 with frame title text-002.&lt;/P&gt;&lt;P&gt;selection-screen : skip 1.&lt;/P&gt;&lt;P&gt;selection-screen begin of line.&lt;/P&gt;&lt;P&gt;selection-screen comment 1(10) text_003.&lt;/P&gt;&lt;P&gt;parameters: p_date  like zXXX-erdat modif id g2.&lt;/P&gt;&lt;P&gt;selection-screen comment 50(10) text_004.&lt;/P&gt;&lt;P&gt;parameters: p_date1  like zXXX-erdat modif id g2.&lt;/P&gt;&lt;P&gt;selection-screen end of line.&lt;/P&gt;&lt;P&gt;selection-screen : skip 1.&lt;/P&gt;&lt;P&gt;selection-screen : end of block blk2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I HAVE TO DELETE THE BLK2 WITH TEXT-002.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me know thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;deepthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 20:30:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-selection-screen/m-p/1855322#M361755</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-29T20:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: issue with selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-selection-screen/m-p/1855323#M361756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deepthi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to have all parameters and select-options under one selection-screen block rather having them separately into two blocks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you maintain them in two blocks then you will get an additional always displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen : begin of block blk1 with frame title text-002.&lt;/P&gt;&lt;P&gt;selection-screen : skip 1.&lt;/P&gt;&lt;P&gt;selection-screen begin of line.&lt;/P&gt;&lt;P&gt;selection-screen comment 1(10) text_002.&lt;/P&gt;&lt;P&gt;parameters: p_MATNR like MARA-MATNR modif id g1.&lt;/P&gt;&lt;P&gt;selection-screen comment 50(10) text_001.&lt;/P&gt;&lt;P&gt;parameters: p_MATNR1 like MARA-MATNR modif id g1.&lt;/P&gt;&lt;P&gt;selection-screen end of line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;*selection-screen : begin of block blk2 with frame title *text-003.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;selection-screen : skip 1.&lt;/P&gt;&lt;P&gt;selection-screen begin of line1.&lt;/P&gt;&lt;P&gt;selection-screen comment 1(10) text_003.&lt;/P&gt;&lt;P&gt;parameters: p_DATE TYPE SY-DATUM modif id g2.&lt;/P&gt;&lt;P&gt;selection-screen comment 50(10) text_004.&lt;/P&gt;&lt;P&gt;parameters: p_DATE1 TYPE SY-DATUM modif id g2.&lt;/P&gt;&lt;P&gt;selection-screen end of line1.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;selection-screen : end of block blk1.&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 20:36:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-selection-screen/m-p/1855323#M361756</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-29T20:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: issue with selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-selection-screen/m-p/1855324#M361757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and one last question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have 3 things for rad button 1 and 2 for radi button 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when i use rad button 2, its leaving the space that the 3 things of rad button 1 occupy. can we move the radio button 2 things up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me know&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am awarding poinst to all&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;deepthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 20:45:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-selection-screen/m-p/1855324#M361757</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-29T20:45:01Z</dc:date>
    </item>
    <item>
      <title>Re: issue with selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-selection-screen/m-p/1855325#M361758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deepthi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The space due to selection-screen : skip 1 statement.&lt;/P&gt;&lt;P&gt;Comment this statement and check once.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen : begin of block blk1 with frame title text-002.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;*selection-screen : skip 1.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of line.&lt;/P&gt;&lt;P&gt;selection-screen comment 1(10) text_002.&lt;/P&gt;&lt;P&gt;parameters: p_MATNR like MARA-MATNR modif id g1.&lt;/P&gt;&lt;P&gt;selection-screen comment 50(10) text_001.&lt;/P&gt;&lt;P&gt;parameters: p_MATNR1 like MARA-MATNR modif id g1.&lt;/P&gt;&lt;P&gt;selection-screen end of line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*selection-screen : begin of block blk2 with frame title *text-003.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;*selection-screen : skip 1.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of line1.&lt;/P&gt;&lt;P&gt;selection-screen comment 1(10) text_003.&lt;/P&gt;&lt;P&gt;parameters: p_DATE TYPE SY-DATUM modif id g2.&lt;/P&gt;&lt;P&gt;selection-screen comment 50(10) text_004.&lt;/P&gt;&lt;P&gt;parameters: p_DATE1 TYPE SY-DATUM modif id g2.&lt;/P&gt;&lt;P&gt;selection-screen end of line1.&lt;/P&gt;&lt;P&gt;selection-screen : end of block blk1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 20:48:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-selection-screen/m-p/1855325#M361758</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-29T20:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: issue with selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-selection-screen/m-p/1855326#M361759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have awarded points to you all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have already commented the skip statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but since we are make the selction things of rad button 1 when we are selection radio button 2 , but the space reamins like that , its leaving space blank and then the starting the radio butt 2 selection things. IASKED WHETHER WE CAN MOVE THIS THINGS UP.&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;DEEPTHI&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 21:01:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-selection-screen/m-p/1855326#M361759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-29T21:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: issue with selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-selection-screen/m-p/1855327#M361760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deepthi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We can not move this things up but you can do in another way.&lt;/P&gt;&lt;P&gt;First of all, have radio button selection in one block and&lt;/P&gt;&lt;P&gt;the respective parameters for the radibuttons in the other block.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK MAIN WITH FRAME TEXT-001.&lt;/P&gt;&lt;P&gt;PARAMETERS: P_RB1 RADIOBUTTON GROUP RBG DEFAULT 'X',&lt;/P&gt;&lt;P&gt;            P_RB2 RADIOBUTTON GROUP RBG.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK MAIN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK  SUB WITH FRAME TEXT-001.&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 1(10) text_002.&lt;/P&gt;&lt;P&gt;parameters: p_MATNR like MARA-MATNR modif id g1.&lt;/P&gt;&lt;P&gt;selection-screen comment 50(10) text_001.&lt;/P&gt;&lt;P&gt;parameters: p_MATNR1 like MARA-MATNR modif id g1.&lt;/P&gt;&lt;P&gt;selection-screen end of line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of line1.&lt;/P&gt;&lt;P&gt;selection-screen comment 1(10) text_003.&lt;/P&gt;&lt;P&gt;parameters: p_DATE TYPE SY-DATUM modif id g2.&lt;/P&gt;&lt;P&gt;selection-screen comment 50(10) text_004.&lt;/P&gt;&lt;P&gt;parameters: p_DATE1 TYPE SY-DATUM modif id g2.&lt;/P&gt;&lt;P&gt;selection-screen end of line1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK SUB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 21:11:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-selection-screen/m-p/1855327#M361760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-29T21:11:24Z</dc:date>
    </item>
  </channel>
</rss>

