<?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>Question Re: How do I should use Input Parameters with multiple values on a scripted CalcView? in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/how-do-i-should-use-input-parameters-with-multiple-values-on-a-scripted/qaa-p/10820905#M3959092</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Amol,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am working on something very similar. I have a logic for the dates, then I get IP_MONTH_FROM and IP_MONTH_TO as two separate Input parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next, I would like to fill the &lt;STRONG&gt;Default Values&lt;/STRONG&gt; of one &lt;STRONG&gt;Interval&lt;/STRONG&gt; Variable with those input parameters. The question is, how to? In other words, what is the syntax for something similar to RANGE-LOW and RANGE-HIGH in CMOD in BW?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance for your insight.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dmitry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 May 2015 06:33:04 GMT</pubDate>
    <dc:creator>DmitryKuznetsov</dc:creator>
    <dc:date>2015-05-21T06:33:04Z</dc:date>
    <item>
      <title>How do I should use Input Parameters with multiple values on a scripted CalcView?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-do-i-should-use-input-parameters-with-multiple-values-on-a-scripted/qaq-p/10820900</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;I need to make some projections on a scripted Calculation View with several values in the where clause of a CE Function using multiple values from an Input Parameter. I found the way to set intervals or single values but nothing like what I'm looking for.&lt;/P&gt;&lt;P&gt;In SQL it should be something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT ATTR1, sum(MEASURE1) FROM "&amp;lt;calc_view&amp;gt;" PLACEHOLDER ( "$$MONTH$$", ['val1','val2','val3','val4']) GROUP BY ATTR1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or like SELECT-OPTIONS in ABAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does scripted calculation views have a way to filter a table by a field with several values using Input Parameters?&lt;/P&gt;&lt;P&gt;How do I set the Input Parameters to reach that? &lt;/P&gt;&lt;P&gt;How is the syntax to call that calculation view and set several values in the place holders?&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 Dec 2014 20:08:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-do-i-should-use-input-parameters-with-multiple-values-on-a-scripted/qaq-p/10820900</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-12-29T20:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: How do I should use Input Parameters with multiple values on a scripted CalcView?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-do-i-should-use-input-parameters-with-multiple-values-on-a-scripted/qaa-p/10820901#M3959088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As of now input parameter does not support for multiple values like select-options in abap, but you can use input variable for achieving the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/616281" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amol&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Dec 2014 04:13:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-do-i-should-use-input-parameters-with-multiple-values-on-a-scripted/qaa-p/10820901#M3959088</guid>
      <dc:creator>amol_samte</dc:creator>
      <dc:date>2014-12-30T04:13:30Z</dc:date>
    </item>
    <item>
      <title>Re: How do I should use Input Parameters with multiple values on a scripted CalcView?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-do-i-should-use-input-parameters-with-multiple-values-on-a-scripted/qaa-p/10820902#M3959089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Amol!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally I've used variables instead input parameters that allow me to filter by multiple values.&lt;/P&gt;&lt;P&gt;But I wanted to use Input Parameters because I can filter values from views sooner and not calcute over values that will be filtered at the end. It would be more performant.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jan 2015 15:03:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-do-i-should-use-input-parameters-with-multiple-values-on-a-scripted/qaa-p/10820902#M3959089</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-01-13T15:03:09Z</dc:date>
    </item>
    <item>
      <title>Re: How do I should use Input Parameters with multiple values on a scripted CalcView?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-do-i-should-use-input-parameters-with-multiple-values-on-a-scripted/qaa-p/10820903#M3959090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ivan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually we had also same issue with date i.e. we have to pass date value like from date an to date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So we have created IP_FROM_DATE and IP_TO_DATE input parameter.&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;Amol&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jan 2015 10:22:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-do-i-should-use-input-parameters-with-multiple-values-on-a-scripted/qaa-p/10820903#M3959090</guid>
      <dc:creator>amol_samte</dc:creator>
      <dc:date>2015-01-19T10:22:46Z</dc:date>
    </item>
    <item>
      <title>Re: How do I should use Input Parameters with multiple values on a scripted CalcView?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-do-i-should-use-input-parameters-with-multiple-values-on-a-scripted/qaa-p/10820904#M3959091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ivan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First of all, input params are not meant for filtering. And there is no direct way to pass multiple values to a input param.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if its a critical requirement there is a way. But will require some work around.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pass your values to one single input param seperated by a comma or something. Then in your script parse it and store it separately in different variables. Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Safiyu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jan 2015 10:55:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-do-i-should-use-input-parameters-with-multiple-values-on-a-scripted/qaa-p/10820904#M3959091</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-01-19T10:55:03Z</dc:date>
    </item>
    <item>
      <title>Re: How do I should use Input Parameters with multiple values on a scripted CalcView?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-do-i-should-use-input-parameters-with-multiple-values-on-a-scripted/qaa-p/10820905#M3959092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Amol,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am working on something very similar. I have a logic for the dates, then I get IP_MONTH_FROM and IP_MONTH_TO as two separate Input parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next, I would like to fill the &lt;STRONG&gt;Default Values&lt;/STRONG&gt; of one &lt;STRONG&gt;Interval&lt;/STRONG&gt; Variable with those input parameters. The question is, how to? In other words, what is the syntax for something similar to RANGE-LOW and RANGE-HIGH in CMOD in BW?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance for your insight.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dmitry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2015 06:33:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-do-i-should-use-input-parameters-with-multiple-values-on-a-scripted/qaa-p/10820905#M3959092</guid>
      <dc:creator>DmitryKuznetsov</dc:creator>
      <dc:date>2015-05-21T06:33:04Z</dc:date>
    </item>
    <item>
      <title>Re: How do I should use Input Parameters with multiple values on a scripted CalcView?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-do-i-should-use-input-parameters-with-multiple-values-on-a-scripted/qaa-p/10820906#M3959093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello &lt;STRONG style="margin: -9px 0 0; font-size: 10.8000001907349px; color: #333333; text-align: right; background: #ffffff;"&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" data-avatarid="-1" data-externalid="" data-presence="null" data-userid="720210" data-username="ivancernigoj" href="https://answers.sap.com/people/ivancernigoj" style="padding: 0 3px 0 0; font-weight: normal; font-style: inherit; font-size: 20px; font-family: inherit; color: #3778c7; background: transparent;"&gt;Ivan Cernigoj,&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please go through this guide by &lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" data-avatarid="32896" data-externalid="" data-presence="null" data-userid="50759" data-username="krishna.tangudu" href="https://answers.sap.com/people/krishna.tangudu" style="font-size: 12px; text-decoration: underline; color: #3778c7; background: #ffffff;"&gt;Krishna Tangudu&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;,he explained it beautifully I hope it will solve your problem&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A __default_attr="99677" __jive_macro_name="blogpost" class="jive_macro jive_macro_blogpost" data-orig-content="Using Multiple Values in Input parameter for filtering in Graphical Calculation View" href="https://community.sap.com/"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A __default_attr="99089" __jive_macro_name="blogpost" class="jive_macro jive_macro_blogpost" data-orig-content="SAP HANA: Handling Dynamic Select Column List and Multiple values in input parameter" href="https://community.sap.com/" modifiedtitle="true" title="SAP HANA: Handling Dynamic Select Column List and Multiple values in input parameter"&gt;&lt;/A&gt;&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;Debasis Nayak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2015 07:25:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-do-i-should-use-input-parameters-with-multiple-values-on-a-scripted/qaa-p/10820906#M3959093</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-05-21T07:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: How do I should use Input Parameters with multiple values on a scripted CalcView?</title>
      <link>https://community.sap.com/t5/technology-q-a/how-do-i-should-use-input-parameters-with-multiple-values-on-a-scripted/qaa-p/10820907#M3959094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I finally did that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Iván&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 May 2015 17:41:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-do-i-should-use-input-parameters-with-multiple-values-on-a-scripted/qaa-p/10820907#M3959094</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-05-26T17:41:36Z</dc:date>
    </item>
  </channel>
</rss>

