<?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 for user input parameter in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-for-user-input-parameter/m-p/12272285#M1987971</link>
    <description>&lt;P&gt;In selection screen get the number of members u need to add, accordingly u design your internal table with editable fields. Add the custom button like add item or delete item, so that the user can add or remove the records. Write the process logic to update the same. &lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Santhosh...&lt;/P&gt;</description>
    <pubDate>Tue, 15 Sep 2020 05:10:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2020-09-15T05:10:51Z</dc:date>
    <item>
      <title>Dynamic selection screen for user input parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-for-user-input-parameter/m-p/12272281#M1987967</link>
      <description>&lt;P&gt;I would like to add button in selection screen with text "Add a member comission". if user clicks the button two input parameter fields should be added/appeared on the selection screen: one parameter for member position, another parameter for member full name. If the user clicks "Add a member comission" button again, similarly another comission member should be added on the screen with its two parameters (position and fullname). Maximum comission members can be upto 15 members depending on user clicks on the button. At the end of selection screen, all comission members details (member position and member fullname) should be collected one internal table. How can it be implemented, please help. Thanks. &lt;/P&gt;</description>
      <pubDate>Mon, 14 Sep 2020 15:00:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-for-user-input-parameter/m-p/12272281#M1987967</guid>
      <dc:creator>Iqbol</dc:creator>
      <dc:date>2020-09-14T15:00:34Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selection screen for user input parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-for-user-input-parameter/m-p/12272282#M1987968</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;One option is to have all selection screen fields for 15 new members and then hide/unhide them based on the button click. You will have to save the button click counter somewhere(probably shared memory or one selection screen field which is hidden, but values gets updated for each click). At end of screen, just read values from all selection-screen fields.&lt;/P&gt;&lt;P&gt;To hide/unhide values, use LOOP AT SCREEN. Lots of information regarding that on SAP Community. &lt;A href="https://wiki.scn.sap.com/wiki/display/Snippets/Dynamic%20Selection%20Screens%20based%20on%20user%20inputs?original_fqdn=wiki.sdn.sap.com&amp;amp;bc=true"&gt;Link&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Or you may decide to generate selection-screen dynamically - Follow this &lt;A href="https://blogs.sap.com/2014/02/18/dynamic-selection-screen/"&gt;link&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Sep 2020 16:20:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-for-user-input-parameter/m-p/12272282#M1987968</guid>
      <dc:creator>GK817</dc:creator>
      <dc:date>2020-09-14T16:20:25Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selection screen for user input parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-for-user-input-parameter/m-p/12272283#M1987969</link>
      <description>&lt;P&gt;It's not the purpose of a selection screen to type data to save it into database. You would better do it via a dynpro.&lt;/P&gt;&lt;P&gt;But if it's for ABAP training, fine.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Sep 2020 17:53:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-for-user-input-parameter/m-p/12272283#M1987969</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2020-09-14T17:53:21Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selection screen for user input parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-for-user-input-parameter/m-p/12272284#M1987970</link>
      <description>&lt;P&gt;&lt;SPAN class="mention-scrubbed"&gt;iqbol.adahamjonov&lt;/SPAN&gt;,&lt;/P&gt;&lt;P&gt;Your Requirement doesn't suit to Selection screen, instead Recommend you to opt for Module Pool Programming.&lt;/P&gt;&lt;P&gt;In case your requirement grows later, Module Pool should be a better choice than selection screen. Also considering the fact that you need to collect the data in an  internal table this should be a better choice.&lt;/P&gt;&lt;P&gt;Regards!&lt;/P&gt;</description>
      <pubDate>Tue, 15 Sep 2020 04:45:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-for-user-input-parameter/m-p/12272284#M1987970</guid>
      <dc:creator>former_member1716</dc:creator>
      <dc:date>2020-09-15T04:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic selection screen for user input parameter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-for-user-input-parameter/m-p/12272285#M1987971</link>
      <description>&lt;P&gt;In selection screen get the number of members u need to add, accordingly u design your internal table with editable fields. Add the custom button like add item or delete item, so that the user can add or remove the records. Write the process logic to update the same. &lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Santhosh...&lt;/P&gt;</description>
      <pubDate>Tue, 15 Sep 2020 05:10:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-for-user-input-parameter/m-p/12272285#M1987971</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-09-15T05:10:51Z</dc:date>
    </item>
  </channel>
</rss>

