<?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: How to make a dynamic selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-dynamic-selection-screen/m-p/5392248#M1239406</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;   Can u please show me how have u declared your Internal Table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;Suraj S Nair&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Apr 2009 12:36:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-02T12:36:25Z</dc:date>
    <item>
      <title>How to make a dynamic selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-dynamic-selection-screen/m-p/5392245#M1239403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I have been searching the SDN for long time, but couldn't find the answer, so therefor a new post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an internal table with following values:&lt;/P&gt;&lt;P&gt;VBKD-BSARK_E&lt;/P&gt;&lt;P&gt;TVKO-VKORG&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By these values I would like to make a new selection-screen whith following:&lt;/P&gt;&lt;P&gt;Parameters: FIELD1 like VBKD-BSARK_E.&lt;/P&gt;&lt;P&gt;Parameters: FIELD2 like TVKO-VKORG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next time the internal table can contain &lt;/P&gt;&lt;P&gt;MARA-MATNR&lt;/P&gt;&lt;P&gt;TVKO-VKORG&lt;/P&gt;&lt;P&gt;VBAK-BSTZD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And the parameters should then be:&lt;/P&gt;&lt;P&gt;Parameters: FIELD1 like MARA-MATNR.&lt;/P&gt;&lt;P&gt;Parameters: FIELD2 like TVKO-VKORG.&lt;/P&gt;&lt;P&gt;Parameters: FIELD3 like VBAK-BSTZD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I do that -any suggestions?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 11:58:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-dynamic-selection-screen/m-p/5392245#M1239403</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-02T11:58:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a dynamic selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-dynamic-selection-screen/m-p/5392246#M1239404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just a question for you:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do you want to create a selection screen up front, when you only at runtime know how internal tables are filled / structured?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 12:09:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-dynamic-selection-screen/m-p/5392246#M1239404</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2009-04-02T12:09:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a dynamic selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-dynamic-selection-screen/m-p/5392247#M1239405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;This piece of code will design selection screen based on radio button selection:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001 .
    SELECT-OPTIONS :  s_date  FOR  pnpbegps DEFAULT sy-datum  .    
    SELECTION-SCREEN: END OF BLOCK b1.

    SELECTION-SCREEN : BEGIN OF  BLOCK b2 WITH FRAME TITLE text-002.
    PARAMETERS:rb1 RADIOBUTTON GROUP rbf DEFAULT 'X'.
    PARAMETERS:rb2 RADIOBUTTON GROUP rbf .

    SELECTION-SCREEN: END OF BLOCK b2.


    SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-003 .
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(25) text-006 FOR FIELD px_pdf.
    PARAMETERS:  px_pdf AS CHECKBOX USER-COMMAND xxx  .       
    SELECTION-SCREEN END OF LINE.

    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(15) text-004 FOR FIELD rb_app.
    PARAMETERS:rb_app RADIOBUTTON GROUP gbf DEFAULT 'X' USER-COMMAND uc01.
    PARAMETERS: p_file(128) MODIF ID 001.           " application server
    SELECTION-SCREEN END OF LINE.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Krishna..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 12:33:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-dynamic-selection-screen/m-p/5392247#M1239405</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-02T12:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a dynamic selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-dynamic-selection-screen/m-p/5392248#M1239406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;   Can u please show me how have u declared your Internal Table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;Suraj S Nair&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 12:36:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-dynamic-selection-screen/m-p/5392248#M1239406</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-02T12:36:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a dynamic selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-dynamic-selection-screen/m-p/5392249#M1239407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think that i can use FM: POPUP_GET_VALUES&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 12:42:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-a-dynamic-selection-screen/m-p/5392249#M1239407</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-02T12:42:48Z</dc:date>
    </item>
  </channel>
</rss>

