<?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: Is it possible to call parameter on same screen using push-button (Add+) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-possible-to-call-parameter-on-same-screen-using-push-button-add/m-p/521508#M18732</link>
    <description>&lt;P&gt;thanks for your reply...&lt;/P&gt;
  &lt;P&gt;But i want to increase parameters not values....&lt;/P&gt;
  &lt;P&gt;that means .........&lt;/P&gt;
  &lt;P&gt;if you click on that Button(ADD+) ...&lt;/P&gt;
  &lt;P&gt;p_in ......... (ADD+)&lt;/P&gt;
  &lt;P&gt;p_op ......&lt;/P&gt;
  &lt;P&gt;p_in........&lt;/P&gt;
  &lt;P&gt;p_op.......&lt;/P&gt;
  &lt;P&gt;i'm expecting like this ....&lt;/P&gt;</description>
    <pubDate>Sat, 02 Dec 2017 09:02:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2017-12-02T09:02:36Z</dc:date>
    <item>
      <title>Is it possible to call parameter on same screen using push-button (Add+)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-possible-to-call-parameter-on-same-screen-using-push-button-add/m-p/521504#M18728</link>
      <description>&lt;P&gt;PARAMETERS : p_in TYPE c MODIF ID m1 .&lt;BR /&gt; SELECTION-SCREEN PUSHBUTTON 50(20) text-001 USER-COMMAND btn .&lt;BR /&gt; PARAMETERS p_op TYPE i MODIF ID m2.&lt;/P&gt;
  &lt;P&gt;i want a push-button to increase parameters in same screen..&lt;/P&gt;
  &lt;P&gt;Help me ..&lt;/P&gt;
  &lt;P&gt;Thank you...&lt;/P&gt;</description>
      <pubDate>Fri, 01 Dec 2017 06:58:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-possible-to-call-parameter-on-same-screen-using-push-button-add/m-p/521504#M18728</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-12-01T06:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to call parameter on same screen using push-button (Add+)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-possible-to-call-parameter-on-same-screen-using-push-button-add/m-p/521505#M18729</link>
      <description>&lt;P&gt;It is:&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;TABLES sscrfields.

PARAMETERS : p_in TYPE c MODIF ID m1 .
SELECTION-SCREEN PUSHBUTTON 50(20) text-001 USER-COMMAND btn .
PARAMETERS p_op TYPE i MODIF ID m2.

AT SELECTION-SCREEN.
  CASE sscrfields-ucomm.
    WHEN 'BTN'.
      p_op = p_op + 1.
  ENDCASE.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 01 Dec 2017 09:44:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-possible-to-call-parameter-on-same-screen-using-push-button-add/m-p/521505#M18729</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-12-01T09:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to call parameter on same screen using push-button (Add+)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-possible-to-call-parameter-on-same-screen-using-push-button-add/m-p/521506#M18730</link>
      <description>&lt;P&gt;If you know the number of additional input fileds, you can make them visible on user action (Default : invisible)&lt;/P&gt;</description>
      <pubDate>Fri, 01 Dec 2017 10:18:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-possible-to-call-parameter-on-same-screen-using-push-button-add/m-p/521506#M18730</guid>
      <dc:creator>Sathya_Gunasekaran</dc:creator>
      <dc:date>2017-12-01T10:18:27Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to call parameter on same screen using push-button (Add+)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-possible-to-call-parameter-on-same-screen-using-push-button-add/m-p/521507#M18731</link>
      <description>&lt;P&gt;In case you want to count the &lt;STRONG&gt;absolute &lt;/STRONG&gt;number of clicks adapt the code like so&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;TABLES sscrfields.
DATA gv_clicks TYPE i.
PARAMETERS : p_in TYPE c MODIF ID m1 .
SELECTION-SCREEN PUSHBUTTON 50(20) text-001 USER-COMMAND btn .
PARAMETERS p_op TYPE i MODIF ID m2.

AT SELECTION-SCREEN.
  CASE sscrfields-ucomm.
    WHEN 'BTN'.
      gv_clicks = gv_clicks + 1.
      p_op = gv_clicks.
  ENDCASE.&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 02 Dec 2017 07:03:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-possible-to-call-parameter-on-same-screen-using-push-button-add/m-p/521507#M18731</guid>
      <dc:creator>iftah_peretz</dc:creator>
      <dc:date>2017-12-02T07:03:36Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to call parameter on same screen using push-button (Add+)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-possible-to-call-parameter-on-same-screen-using-push-button-add/m-p/521508#M18732</link>
      <description>&lt;P&gt;thanks for your reply...&lt;/P&gt;
  &lt;P&gt;But i want to increase parameters not values....&lt;/P&gt;
  &lt;P&gt;that means .........&lt;/P&gt;
  &lt;P&gt;if you click on that Button(ADD+) ...&lt;/P&gt;
  &lt;P&gt;p_in ......... (ADD+)&lt;/P&gt;
  &lt;P&gt;p_op ......&lt;/P&gt;
  &lt;P&gt;p_in........&lt;/P&gt;
  &lt;P&gt;p_op.......&lt;/P&gt;
  &lt;P&gt;i'm expecting like this ....&lt;/P&gt;</description>
      <pubDate>Sat, 02 Dec 2017 09:02:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-possible-to-call-parameter-on-same-screen-using-push-button-add/m-p/521508#M18732</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-12-02T09:02:36Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to call parameter on same screen using push-button (Add+)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-possible-to-call-parameter-on-same-screen-using-push-button-add/m-p/521509#M18733</link>
      <description>&lt;P&gt;I finally understand what you mean, by reading your latest comment. So, you want to add additional fields in the selection screen, dynamically at runtime.&lt;/P&gt;
  &lt;P&gt;cf Sathya's answer.&lt;/P&gt;
  &lt;P&gt;Either use a static selection screen with hidden parameters p_in2, p_op2, p_in3, p_op3, etc. Make them invisible by default (loop at screen..., screen-active='0' or '1', modify screen...), and make them visible when you press the button.&lt;/P&gt;
  &lt;P&gt;You may use a dynamic selection screen by using function modules FREE_SELECTIONS_INIT, FREE_SELECTIONS_DIALOG...&lt;/P&gt;
  &lt;P&gt;Search the web for more information about these concepts.&lt;/P&gt;</description>
      <pubDate>Sat, 02 Dec 2017 09:50:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-possible-to-call-parameter-on-same-screen-using-push-button-add/m-p/521509#M18733</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2017-12-02T09:50:25Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to call parameter on same screen using push-button (Add+)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-possible-to-call-parameter-on-same-screen-using-push-button-add/m-p/521510#M18734</link>
      <description>&lt;P&gt;Thank You .... &lt;A href="https://answers.sap.com/users/235582/jolt242.html"&gt;Jörgen Lindqvist&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 02 Dec 2017 11:35:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/is-it-possible-to-call-parameter-on-same-screen-using-push-button-add/m-p/521510#M18734</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-12-02T11:35:41Z</dc:date>
    </item>
  </channel>
</rss>

