SSAS report action to pass multi-value list of dimention key values to a SSRS report parameter

This was originally posted on StackOverflow and suggested I try here as well.
I want to create a report action in an SSAS OLAP cube that generates a list of formatted values to pass into an SSRS report parameter that accepts a multi-valued parameter list.  This would be applied at the
cell level in the SSAS action.  I have found a solution that gets me most of the way:
How to Pass Multiple Values from an SSAS Report Drill Through Action to an SSRS Multi-Value Parameter, but not quite.  The action does appear in Excel and works
if I run the action from a cell that is at or below the dimension attribute I am generating the list for, in this case,
Account Key.
Below is a link to a screen capture (unable to embed it due to lack of reputation) showing the action and dimension structure in Excel.  The action works as long as I run it at the
Account Key level or below.  I want to be able to run it at higher levels, such as
Account Major and still have it generate all then related Account Key values for the SSRS report parameter.  Running it at the higher
Account Major level does not trigger the report to run.
Excel Action Screen Shot:
http://i.stack.imgur.com/QCGSp.png
Below is the MDX I am using to generate the value for the report parameter:
UrlEscapeFragment(
GENERATE(
DESCENDANTS(
[Account].[Account Key].CurrentMember,
[Account].[Account Key].[Account Key]
[Account].[Account Key].CURRENTMEMBER.Name,
"&rp:Account="
I am hoping that I can somehow modify the MDX above to make it return all the
Account Keys for any attribute of the Account dimension when ran from any measure cell, not just when ran at self and children of
Account Key in the pivot table.
Also, if it helps, I can execute the following MDX query on the cube and get the results I am looking for.
WITH MEMBER [Measures].[Account Key List] as
GENERATE(
DESCENDANTS([Account].[Account].CurrentMember, [Account].[Account].[Account]),
[Account].[Account].CURRENTMEMBER.NAME,
"&rp:Account=")
SELECT {[Measures].[Account Key List]} on 0,
([Account].[Account Company Number].[Account Company Number],[Account].[Account Major].[Account Major]
) on 1
FROM [Company 10 Action Demo]
Below are partial results:
10.116&rp:Account=10.116.010
10.117&rp:Account=10.117.010&rp:Account=10.117.020
10.120&rp:Account=10.120.005&rp:Account=10.120.006&rp:Account=10.120.010&rp:Account=10.120.020&rp:Account=10.120.030&rp:Account=10.120.040&rp:Account=10.120.050&rp:Account=10.120.060&rp:Account=10.120.380&rp:Account=10.120.999
10.123
Questions
Any ideas what I might need to do to get Account Key to be returned for any attribute of the
Account dimension?
Would I possibly have to alter my Account dimension in the cube to get this to work?
Thanks in advance.
Edit 1 - Adventure Works Cube Version
I was unable to get the suggested answer with the "Exists" function to work.  To better demonstrate this issue, I have recreated it using the Adventure Works Cube.
I will focus on the Customer dimension, specifically the Customer and
Education attributes.  I created a report action called Test Report Action.  Below is the XML created for it in the cube.
<Action xsi:type="ReportAction" dwd:design-time-name="f35ad5ee-5167-4fb8-a0e0-0a74cc6e81c6">
<ID>Report Action 1</ID>
<Name>Test Report Action</Name>
<TargetType>Cells</TargetType>
<Target></Target>
<Type>Report</Type>
<ReportServer>SQLSERVER</ReportServer>
<Path>ReportServer?/Test Report</Path>
<ReportParameters>
<ReportParameter>
<Name>Test Customer Existing</Name>
<Value>UrlEscapeFragment(
GENERATE(
EXISTING DESCENDANTS(
[Customer].[Customer].CurrentMember,
[Customer].[Customer].[Customer]
[Customer].[Customer].CURRENTMEMBER.Name,
"&amp;rp:Customer="
)</Value>
</ReportParameter>
</ReportParameters>
<ReportFormatParameters>
<ReportFormatParameter>
<Name>rs:Command</Name>
<Value>Render</Value>
</ReportFormatParameter>
<ReportFormatParameter>
<Name>rs:Renderer</Name>
<Value>HTML5</Value>
</ReportFormatParameter>
</ReportFormatParameters>
</Action>
Below are the steps to re-create the issue.
Connect to the cube in Excel
Add dimension Customer -> More Fields -> Customer
Add measure Internet Sales -> Internet Sales Amount
Right-click Internet Sales Amount cell, select "Additional Actions" -> "Test Report Action" and see customer values created for URL 
When the action is ran at this point with Customer, I see the values created in the URL shown message box (since there is no SSRS report server at location specified).
Now the part I'm unable to resolve
Remove the Customer dimension and add Customer -> Demographic -> Education
Right-click Internet Sales Amount cell, select "Additional Actions" -> "Test Report Action"
Nothing happens. If I ran the action on the cell next to "Bachelors", I would want it to build up all the list of all the "Customers"  that make up the "Bachelors" in the
Customer dimension as part of the report parameter.  If no attributes where used in the cube from the
Customer dimension for that cell, then I would like it to return "All Customers", or something similar to show that all customers are included in the aggregations.
I am not too MDX savvy, thus far.  I think I need to somehow join the
Customers to Internet Sales Amount in the Generate function portion.  I have tried several different combinations of the
Customer dimension and Internet Sales Amount, along with various functions to see if I could get this to work with no success.  I am hoping that someone more knowledgeable the me will have a solution.   If you need more details,
please ask and I will provide them.

Simon,
Thanks for you help with this.  This morning I found a workaround.  Below describes what that is.
What I ended up doing was getting a list of values from a degenerate dimension that I could use to pass to SSRS to get a list of transactions for a report.  Below is how I did this, in relation to the Adventure Works cube using the degenerate dimension
Internet Order Details.
WITH MEMBER [Measures].[Order Param List] AS
GENERATE(
EXISTS([Internet Sales Order Details].[Sales Order Number].[Sales Order Number].Members, ,
"Internet Sales"),
[Internet Sales Order Details].[Sales Order Number].CurrentMember.Name,
"&rp:OrderNum=")
SELECT {[Measures].[Order Param List], [Measures].[Internet Sales Amount]} ON 0
,([Date].[Calendar].[Date]) ON 1
FROM [Adventure Works]
This will get a list of Sales Order Number in a text string, separated by "&rp:OrderNum=" for each measure of
Internet Sales. This would allow me to create an SSRS report to bring back detail information for each
Sales Order Number. Below are some sample results.
May 16, 2007 SO50493&rp:OrderNum=SO50494&rp:OrderNum=SO50495&rp:OrderNum=SO50496&rp:OrderNum=SO50497&rp:OrderNum=SO50498&rp:OrderNum=SO50499&rp:OrderNum=SO50500 $12,157.80
May 17, 2007 SO50501&rp:OrderNum=SO50502&rp:OrderNum=SO50503&rp:OrderNum=SO50504&rp:OrderNum=SO50505&rp:OrderNum=SO50506&rp:OrderNum=SO50507&rp:OrderNum=SO50508 $13,231.62
May 18, 2007 SO50509&rp:OrderNum=SO50510 $4,624.91
With this, I can then create a Report Action in SSRS with a Parameter Value of
UrlEscapeFragment(
GENERATE(
EXISTS([Internet Sales Order Details].[Sales Order Number].[Sales Order Number].Members, ,
"Internet Sales"),
[Internet Sales Order Details].[Sales Order Number].CurrentMember.Name,
"&rp:OrderNum=")
The way I was going about it before was flawed, as I was trying to get a list of the granular values from each dimension used to build the measure value and pass each one of those as separate parameters. I just needed to set something unique for each fact
measure transaction that represents the value and uses that in a query parameter for the SSRS report.

Similar Messages

  • Refreshing Flash Chart Report based on a Multi-Select List

    I have P13_SYMBOL multiselect list object..
    Set "HTML Form Element Attributes" property of P13_SYMBOL to onchange="javascript:getchart(this);"
    I have written following code at page HTML Header section.
    <script type="text/javascript">
    function getchart(filter)
    var get = new htmldb_Get(null,$v('pFlowId'), 'APPLICATION_PROCESS=GET_CHART',0);
    get.add('G_SYMBOL', filter.value);
    var ret = get.get();
    if(ret)
    var d = document.getElementById('P13_SYMBOL');
    d.innerHTML = ret;
    Created Application Item G_SYMBOL
    Created Application Process GET_CHART as follows.
    DECLARE
    vSymbol VARCHAR2(100);
    BEGIN
    htp.p(:G_SYMBOL);
    EXCEPTION WHEN OTHERS THEN
    htp.p('No such symbol!');
    END;
    Flash chart flash following query.
    select null link, TIMESTAMP label, OPEN value1, HIGH value2, LOW value3, CLOSE value4 from "DCF"."DAILY_STOCK_QUOTE"
    where symbol=:G_SYMBOL
    order by TIMESTAMP
    When I change symbol in multiselect list flash chart doesn't get refresh.
    Any idea what is the wrong with the code?
    Edited by: user8638468 on Mar 3, 2010 12:39 PM
    Edited by: user8638468 on Mar 3, 2010 5:30 PM

    Hey there...
    The reason it's not refreshing is because you actually have to tell the flash chart that it NEEDS to refresh. Unless you have Asynchronous Update turned on, the chart will not refresh itself when the data behind the chart has changed. And even if you DO have Asynchronous Update, on, (Which you don't want to do), you'd likely see some lag between your user's change and the data in the graph changing.
    You can do this by using an APEX JavaScript function called apex_RefreshChart().
    1) Edit the chart and go to the REGION DEFINITION tab.
    2) In the REGION SOURCE, scroll down to the bottom and ad the following code
    <script type="text/javascript">
    function myRefreshChart(){
       var chartName = '#CHART_NAME#';
       chartName = chartName.substring(1);
       apex_RefreshChart(&APP_PAGE_ID., chartName, 'en-us');
    </script>3) At the end of your JavaScript function, call the new function myRefreshChart().
    That should force the chart to refresh by re-executing the underlying query and passing back in the data to the chart.
    NOTE: This function is not part of the publicly documented API's so it's likely not supported, but it does work!
    Look for a blog post with more detail sometime tomorrow.
    Hope this helps.
    Doug Gault
    http://www.sumneva.com
    http://douggault.blogspot.com

  • Select multiple values in mult-select list

    I have the following query as the source for a multi-select page item:
    SELECT person.person_id
    FROM person, pers_proj_task
    WHERE pers_proj_task.person_id = person.person_id
    AND pers_proj_task.project_id = :P3_PROJECT_ID
    The query returns two records and the page item's session value is 4:3, but only the value 4 is highlighted in the mulit-select list. How can I get both values to be highlighted?

    Got it to work for a multi-select item by following Dimitri's post which uses a shuttle example. It was still only highlighting one value, but I tried Patrick Wolf's suggestion from the comments on Dimitri's post to put the pl/sql block in the source of the item rather than as a computation and it worked.
    So I now have a multi-select list which has default values pulled from a LOV. The items that are highlighted by default are selected by using the following pl/sql block in the "source/value or expression" of the :P3_PERSON_ID multi-select item:
    declare
    person_list apex_application_global.vc_arr2;
    i number := 1;
    begin
    for r in ( SELECT person.person_id
    FROM person, pers_proj_task
    WHERE pers_proj_task.person_id = person.person_id
    AND pers_proj_task.project_id = :P3_PROJECT_ID)
    loop
    person_list(i) := r.person_id;
    i := i + 1;
    end loop;
    return APEX_UTIL.TABLE_TO_STRING(person_list,':');
    end;
    Thanks to Amanda, ArtS, Dimitri and Patrick.
    Jeremy

  • Can SOD Analytic Report data be passed to a Inhouse DataWareHouse?

    Can SOD Analytic Report data be passed to a Inhouse DataWareHouse?
    We have built a user report, which has the data that needs to be sent to our Datawarehouse system on a dialy basis. Is Web Services capabale of this type of integation?

    Hi Vetsrini!
    I'm using standalone BIP. I'm using version 10.1.3.4.
    I read about using DataProcessor class. Is there similar solution for standalone?
    I want to do least set up on BIP side and pass on max info from Oracle Forms based application, like xdo name, xml data file name (this approach in order to avoid writing an SQL statement in BIP), template file name, parameters and their values. In the nutshell, specify maximum possible info in the application and pass it on to BIP processing engine to process it and output the report in required format.
    Have been using PublicReportService webservice so far. But, it's not good enough to achieve what I need to.
    I have gone through couple of articles like:
    http://blogs.oracle.com/xmlpublisher/2007/03/getting_started_with_bip_apis.html
    http://blogs.oracle.com/BIDeveloper/2009/12/can_we_design_bip_report_on_th.html
    Your guidance will be of great help.
    Thanks and kind regards,
    Aparna

  • Appraisals - Value list/Rating scales problem

    I assign the rating scale/value list to a template. I face a problem. I have defined a 5 scale rating. Its working fine in R/3 side. But when I go to ESS/MSS, an extra 'Select a Value' comes as default. I do not want this default. Is there any way, I can remove it or change its description. This is coming even if I make the value required.
    Also, I want to change the standard description of the value. So I went to 'Value Description' tab in the template. But it is greyed out. How can I make it open for entry?

    >
    Michael L Pappis wrote:
    > FS,
    >
    > I've also worked through some problems on the value list display in EP4.  Before even resolving your issue, I would strongly urge you to implement the following notes:
    >
    > 0001412852
    > 0001447316
    > 0001450122
    >
    > regarding changing the descriptions of the value list - go to phap_catalog (refresh it new, dont click on any templates), immediately navigate to go-to -> value list.  Here you can define your value list and change descriptions.  Typically you don't modified the sap value list, create your own. 
    >
    > you also need to cateogrize your value list, go back to phap_catalog - navigate to go-to -> basic settings.  Create your value with same value reference # in the qualitative class. 
    >
    > Now, regarding how to make "select a value" disappear, trying configuring an value ID of 0  in your value list- with whatever description you want. 
    >
    > see what effect that has - only after implementing the 3 notes.
    Michael - I am reading this note "  > you also need to cateogrize your value list, go back to phap_catalog - navigate to go-to -> basic settings.  Create your value with same value reference # in the qualitative class.  "   and I am confused.  Are you saying to create the same list under more than one ValueClass ? 
    I am struggling with a Yes, No, N/A value list  having the 'No Value' included in the dropdown. 
    Hope you are having a terrific day!

  • Effective way to parse key-value pair.

    Hi,
    I've a PL/SQL process, in which I've lot of dynamic sql routines planned, to parse input data to a procedure.
    One of the parameter to call or that'd be passed to this procedure is a "key-value pair"
    e.g.
    procedure p ( id in number, state_name in varchar2 )
    Values could be
    20, 'vc1=AZ, vc2=WA, vc3=NY, vc4=NJ'
    My requirement is as follows
    <ol><li>Parse 'state_name', for values of state ( AZ, WA, NY, NJ ) - note that the list could be of variable length</li>
    <li>I'm not interested in 'key' per se ( vc1, vc2, vc3... )</li>
    <li>State names are important as ( as ) part of the process, I want to concatenate them to form tables-name,
         which (already) exists e.g. table_CA, table_AZ, table_WA, table_NJ - so basically I need to
         parse these names and have them in a way to be able to use them as part of other dynamic SQL's.
    </li>
    </ol>
    Please advice.
    Thanks.

    shankariyer wrote:
    Is it possible for me to populate the output of this regex_replace into an array of varchar2 ??
    Sure:
    CREATE OR REPLACE
      TYPE STATE_TBL_TYPE
        AS
          TABLE OF VARCHAR2(2);
    SET SERVEROUTPUT ON
    DECLARE
        v_value_pair VARCHAR2(30) := 'vc1=AZ, vc2=WA, vc3=NY, vc4=NJ';
        v_state_tbl  STATE_TBL_TYPE := STATE_TBL_TYPE();
    BEGIN
        FOR v_i IN 1..NVL(LENGTH(v_value_pair) - LENGTH(REPLACE(v_value_pair,',')) + 1,0) LOOP
          v_state_tbl.EXTEND;
          v_state_tbl(v_i) := LTRIM(REGEXP_SUBSTR(v_value_pair,'=[A-Z]+',1,v_i),'=');
        END LOOP;
        FOR v_i IN 1..v_state_tbl.COUNT LOOP
          DBMS_OUTPUT.PUT_LINE(v_state_tbl(v_i));
        END LOOP;
    END;
    SQL> SET SERVEROUTPUT ON
    SQL> DECLARE
      2      v_value_pair VARCHAR2(30) := 'vc1=AZ, vc2=WA, vc3=NY, vc4=NJ';
      3      v_state_tbl  STATE_TBL_TYPE := STATE_TBL_TYPE();
      4  BEGIN
      5      FOR v_i IN 1..NVL(LENGTH(v_value_pair) - LENGTH(REPLACE(v_value_pair,',')) + 1,0) LOOP
      6        v_state_tbl.EXTEND;
      7        v_state_tbl(v_i) := LTRIM(REGEXP_SUBSTR(v_value_pair,'=[A-Z]+',1,v_i),'=');
      8      END LOOP;
      9      FOR v_i IN 1..v_state_tbl.COUNT LOOP
    10        DBMS_OUTPUT.PUT_LINE(v_state_tbl(v_i));
    11      END LOOP;
    12  END;
    13  /
    AZ
    WA
    NY
    NJ
    PL/SQL procedure successfully completed.
    SQL> SY.

  • Multiple key-value pairs in JNLP file

    Dear All,
    I have a JNLP file with multiple key-value pairs :
    <resources>
         <j2se version="1.4+"/>
         <jar href="lib/myFile.jar"/>
         <property name="url" value="URL/db"/>
         <property name="default" value="10"/>
         <property name="m1_query" value="URL1"/>
         <property name="m2_query" value="URL2"/>
         <property name="m3_query" value="URL3"/>
         <property name="p1_query" value="URL4"/>
         <property name="p2_query" value="URL5"/>
         <property name="p3_query" value="URL6"/>
         <property name="p4_query" value="URL7"/>
       </resources> I dont know what the key names are in the JNLP file so I cant use getProperty(keyname) directly. Is it possible to read all the key-value pairs in a HashMap and iterate through the list?
    Or is there any other way of dealing with it?
    Many thanks in advance.
    Regards
    Anuj

    Hi Riem,
    Thanks for your help ...
    while waiting for a reply ... I managed to do sort out my problem.
                     Properties p = System.getProperties();
                     for (Enumeration enu = p.propertyNames() ; enu.hasMoreElements() ;) {            
                       String key = (String)enu.nextElement();
                       Object value = p.getProperty(key);
                       if(!value.equals("")) {
                              keyValues.put(key, value);
                     }Thanks for your help.
    Cheers
    Anuj

  • Adding key values continuously

    Hi,
    I want to add some key-values in a hashtable continuously i.e for example
    Hashtable cv = new Hashtable();
    cv.put(key1,value1); //added key-value
    The next time I execute the above code, the previous value will not be there, but only the current value. I want both the previous value and next value.
    i.e. cv should contain [key1=value1, key2=value2]
    How to achieve this?
    Please help me in this regard.
    Thanks in Advance....

    Hi,
    What happens here is
    class Dymmy {
    private Hashtable cv = new Hashtable();
    public void addValue(Object key, Object value) {
    List values = (List)cv.get(key);
    if (values == null) {
    values = new LinkedList();
    values.add(value);
    cv.put.(key, values);
    When I invoke the class first time cv contains [key1=value1]
    When I invoke the class second time cv again contains [key1=value1] instead it should contain [key1=value1,key2=value2]
    If I invoke it third time cv should contain [key1=value1,key2=value2,key3,value3] ...

  • SSRS reports integration with sharepoint 2010

    Hi Friends,
    Any one can u pls tell me what are the  prerequisites for integrating SSRS Reports with Sharepoint.
    This is the first time im going to integrate SSRS reports with Sharepoint. Any one pls help me on this.
    Thanks in advance.
    Regards,
    LuckyAbdul

    Hi LuckyAbdul,
    We can integrate Microsoft SQL Server Reporting Services with SharePoint Foundation 2010 or SharePoint Server 2010 by configuring a report server to run in SharePoint integrated mode. There are some prerequisites for integrating SSRS Reports with SharePoint,
    including Report server requirement, SharePoint Products and Technology requirements and Database server requirements in SQL 2008 R2.
    The Reporting Services Configuration Manager is no longer required or supported to configure and administer Reporting Services SharePoint mode in SQL 2012. Use SharePoint Central Administration to configure a report server in SharePoint mode.
    The configuration steps for this version you need to do in Reporting Services Configuration Manager and In Central Administration, please see the following articles:
    2008 R2:
    http://technet.microsoft.com/en-us/library/bb283190(v=sql.105).aspx
    http://sharepointtaskmaster.blogspot.in/2010/11/intergration-reporting-service-with.html
    2012:
    http://technet.microsoft.com/en-us/library/47efa72e-1735-4387-8485-f8994fb08c8c
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Are SSRS reports suitable for making customizable reports?

    Hi,
    I want to give users an option to make customize reports in my web application. So I need to confirm that SSRS reports are suitable for this option or something else I have to implement it.
    And if SSRS reports are suitable for this, then guide me how to start customization using SSRS reports.

    Hi Sanchit,
    If I understand you correctly, you are looking for an option that can allow users can create their own report on your web application, right?
    Microsoft Reporting Services offers four report authoring environments:
    Report Builder 3.0. Use this tool to design reports that are compatible with a SQL Server 2008 R2 report server by using the familiar Ribbon interface.
    Report Designer. Use this tool in SQL Server 2008 R2 Business Intelligence Development Studio (SQL Server 2012 SQL Server Data Tool) to design full-function
    reports that are compatible with a SQL Server 2008 R2 report server.
    However, the authoring tools cannot be integrated into custom web application, so I am afraid there is no such an option to make customize reports in your web application.
    If I have anything misunderstood, please point it out.
    Regards,
    Charlie Liao
    If you have any feedback on our support, please click
    here.
    Charlie Liao
    TechNet Community Support

  • How to setup SSRS reports to run automatically

    Hi All,
    I am completely new to SSRS.  I am currently using Visual Studio Premium 2013 version to develop my SSRS reports.
    I've been reading many posts in regard to setting up SSRS reports to run automatically.
    I can see on some answered posts that I can use subscription feature of SSRS by going to my report manager-->Select
    your report--> goto properties -->Subscription tab.
    My first dumb question as a newbie to SSRS is; how and where do I locate my report manager.
    Thank you all for your help.

    My first dumb question as a newbie to SSRS is; how and
    where do I locate my report manager.
    Hello,
    The "Report Manager" is a web interface to manage & access SSRS reports; see
    Report Manager (SSRS Native Mode) and
    Tutorial: How to Locate and Start Reporting Services Tools (SSRS)
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • SSAS SSRS Report Action on Cell Value w/ Embedded Single Quote Not Executing

    I have configured an SSAS 2008 R2 cube SSRS ReportAction. I'm having problems when the member value for a cell has an embedded single quote, e.g. abc's. The action displays on the context menu appropriately, but when I click on the action, nothing happens.
    For member values that do not have the single quote, the action works as designed. I've added a calculated ember to escape the embedded single quote by adding another single quote, e.g. abc''s, with no luck. Is there a resolution or workaround for this?

    Hi Mdccuber,
    According to your description, you create a reporting action in you cube, and it works fine except the members that have embedded single quote, right? In your scenario, it seems that you pass this value to the report as the parameter.
    In SQL Server Analysis Services (SSAS), when pass values to a report, multi-select parameters have to be placed into IN statement and SQL Server Reporting Services (SSRS) will do single-quote wrapping for string values automatically. In this case, the original
    value that have embedded single quote will be damaged. So this action not work. You can submit a feedback at
    http://connect.microsoft.com/SQLServer/Feedback and hope it is resolved in the next release of service pack or product.
    Regards,
    Charlie Liao
    TechNet Community Support

  • Passing multi value parameter to the Drill through report

    Hi
    I have two reports say Report A and Report B.
    Both reports using same parameters.
    I am Navigating from Report A to Report B using Jump to Report option.
    Now when I pass multiple parameter to the Report B it only displays first parameter results.
    In report B I have parameter multi value select to true.
    I would like to know if its possible or not to pass multi value parameter in drill through report?
    I would appreciate if someone can help me here.
    Regards
    Amit

    Yes you can pass multi value parameters to a drill through report.
    It works similar to multi value parameters for subreports, which is discussed in detail in this thread: http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=163803&SiteID=1
    -- Robert

  • Passing multi-value parameter from BIEE dashboard to BIP report

    It is possibile passing multi-value parameter from BIEE dashboard prompt to BI Publisher integrated report? (BIP report has a DB data source (not a answers))
    Thank you
    R.

    Hi Rajkm,
    In order to pass a multi-value parameter through the Reporting Services Web services, you need to define the same numbers of ParameterValue objects as the number of the values of the multi-value parameter being past into the report. The Name property
    of these ParameterValue objects must be specified same to the parameter name.
    I found a good FAQ article for this scenario:
    How do I pass a multi-value parameter into a report with Reporting Services Web service API?:
    http://blogs.msdn.com/b/sqlforum/archive/2010/12/21/faq-how-do-i-pass-a-multi-value-parameter-into-a-report-with-sql-server-reporting-services-ssrs-web-services-api.aspx
    Hope this helps.
    Elvis Long
    TechNet Community Support

  • Pass values fromSharePoint list multi-selection list box to Infopath Multi-selection list box and back

    Design overview:
    List A
    InfoPath Library - Form A
    SharePoint Designer workflow
    List A has a multi-selection column with multi-values.
    Form A has fields populated from the data in List A by using a data connection in the form.  I have a workflow that updates the values or creates a new item in List A. All fields work except the mufti-selection. The multi-selection has ;# separating
    the values and I am having trouble setting the list box properly(checking of the selecting values) instead it concats all values on one line. I basically need to get the multi-selection column from list 1  to show exactly in the Form A and be able to
    update the selection with the workflow. I can do this with single values with no problem. the multi-selection list is difficult. I read somewhere I can use a repeating table but I am not sure the workflow will work with that. That is only a read and not 
    a write.

    Wow over my head a little. I understand what an array is with script but not how to write the script to handle it. I made this:
    event.value = getField("LISTBOX").value;
    But still no change in the behavior with multi selections. Example below if you want to check it out.
    https://dl.dropboxusercontent.com/u/2944617/formtext2.pdf

Maybe you are looking for

  • Excite PRO 3G connection not work after Android v4.3 update

    Hello, I live in Italy and on last Sunday (january 26th) my Excite PRO tablet (model AT10LE-A-10H) got the Android version 4.3.201121220.35. After restart my wifi works fine, all other app work fine, but my 3g connection doesn't work, mobile network

  • With the iphone 5, how many people can you text at once?

    how many people can you text at one time, using the iphone5?

  • About pagination

    who can give an example of pagination including calculate sum and total sum using php code with sql query? thanks!

  • Rolling pixelation in moving photos

    Ok so I made my project in FCP and exported it as QuickTime Movie, played it and it looked perfect. But when I put it into DVDSP4 the quality went way down. The still picts weren't to bad but when there was any sort of motion or movement of the photo

  • How do i clear past searches from the map application?

    I love the map app. for locating business, etc but don't know how to delete a location I am done with before I start the next search. Is there a way to do this or do I just leave it until I want to do the next search?