Drill through queries

Hi BW experts,
Can any body please let me know the steps involved in creating drill through queries from summarised infocube to detail ODS data.
Thanks in advance
Rajesh

Hi Rajesh,
For doing this you will first have to set up the queries on the cube and ODS. To enable the drill through or jump across, the queries should have at least one char in common. You can then maintain the sender and receiver assignments in transaction RSBBS.
Please see this link for detailed info:
http://help.sap.com/saphelp_nw04/helpdata/en/c9/bc2d38c4b3f205e10000009b38f8cf/content.htm
Hope this helps...

Similar Messages

  • Drill-Through from Roll-up member

    We have drill through enabled for base level members, but can anyone provide an example of a drill-through query that works when originated from either a roll-up member or base level?  Thank you.

    Hi Boon,
    One thing you could try doing is adding an OR clause to your Drill Through query that queries the member table
    This is the sample query from ApShell:
    SELECT tblSalary.Name, tblSalary.PayDate, tblSalary.NetPay, tblSalary.GrossPay, tblSalary.Dept  FROM DrillTest.dbo.tblSalary tblSalary  WHERE (tblSalary.Dept='%ENTITY%')  ORDER BY tblSalary.Name
    To query for parent entity members also it would look like:
    SELECT tblSalary.Name, tblSalary.PayDate, tblSalary.NetPay, tblSalary.GrossPay, tblSalary.Dept  FROM DrillTest.dbo.tblSalary tblSalary  WHERE (tblSalary.Dept='%ENTITY%') OR (tblSalary.Dept IN (SELECT ID FROM ApShell.dbo.mbrEntity WHERE PARENTH1='%ENTITY%'))  ORDER BY tblSalary.Name
    The statement after the "OR" looks at the parent member column (PARENTH1) of the dimension table (mbrEntity) but returns the ID column (i.e. the children of those parent members).
    HTH,
    John

  • EIS drill-through performance is slow!!!!

    take out the _nospam for email responses....my problem is I'm having horrible performance on an EIS drill-through (SQL 2000 repository). For a query that takes 17 seconds to execute from query analyzer (and from EIS as I can see in the logfile), it takes approx 15 minutes to return the recordset back to the Excel add-in. Is this a bug? It appears that there are hundreds of unnecessary queries being executed after the actual data retrieval that is causing the slowdown. See my logfile with <<<comments inserted>>> below:[Mon Oct 07 16:28:02 2002] /IS/Listener/0/Informational/1051001/Build-I620P0B068Received client request Get Drill-Through report[Mon Oct 07 16:28:02 2002] /IS/Worker/0x0/1034026331/Informational/0/Build-I620P0B068Successfully loaded the OLAP Model 'exp_mod_2.0'[Mon Oct 07 16:28:02 2002] /IS/Worker/1034026331/Informational/0/Build-I620P0B068Executed client request 'Get Drill-Through report' in 0 seconds[Mon Oct 07 16:28:04 2002] /IS/Listener/0/Informational/1051001/Build-I620P0B068Received client request Get Drill-Through report attributes[Mon Oct 07 16:28:04 2002] /IS/Worker/1034026331/Informational/0/Build-I620P0B068Executed client request 'Get Drill-Through report attributes' in 0 seconds[Mon Oct 07 16:28:04 2002] /IS/Listener/0/Informational/1051001/Build-I620P0B068Received client request Get Drill-Through report data[Mon Oct 07 16:28:04 2002] /IS/Timer/0/Informational/0/Build-I620P0B068Initialization completed, 'Timer' service is online.[Mon Oct 07 16:28:04 2002] /IS/Worker/0x0/1034026331/Informational/0/Build-I620P0B068dbo.vw_dim_accts table added to from list due to filter based on that table.[Mon Oct 07 16:28:04 2002] /IS/Worker/0x0/1034026331/Informational/0/Build-I620P0B068dbo.vw_dim_org_div_reg table added to from list due to filter based on that table.[Mon Oct 07 16:28:04 2002] /IS/Worker/0x0/1034026331/Informational/0/Build-I620P0B068dbo.exp_drill table added to from list due to filter based on that table.[Mon Oct 07 16:28:04 2002] /IS/Worker/0x0/1034026331/Informational/0/Build-I620P0B068SELECT DISTINCT a.fiscal_year, a.acct_period, a.company, g.r_system, a.system, g.orig_program, g.reference, a.acct_unit, a.sub_account, a.account, g.acct_amount, g.gltrans_description, g.apdistrib_description, g.invoice, g.base_inv_amt, g.je_type, g.po_line_nbr, g.po_num, g.poline_descr, g.quantity, g.r_item, g.source_code, g.vendor, g.vendor_vname, g.posting_date, g.effect_date, g.update_date, g.r_date, g.cmt_text, g.auto_revFROM dbo.gltrans_sum a, dbo.vw_dim_accts b, dbo.vw_glcalendar c, dbo.vw_dim_org_div_reg d, dbo.vw_dim_org_dist e, dbo.vw_dim_org_AU f, dbo.exp_drill gWHERE a.account = b.gen4AND a.fiscal_year = c.fiscal_yearAND a.company = c.companyAND a.acct_period = c.acct_periodAND a.acct_unit = f.AUAND a.company = g.companyAND a.fiscal_year = g.fiscal_yearAND a.acct_period = g.acct_periodAND a.acct_unit = g.acct_unitAND a.account = g.accountAND a.sub_account = g.sub_accountAND a.system = g.systemAND e.region = d.regionAND f.dist = e.distAND (((b.gen3 = 'RENT&UTILEXP')))AND (((a.company = 4)))AND (((a.fiscal_year = 2002)))AND ((({fn SUBSTRING({fn MONTHNAME(c.per_end_date)}, 1, 3)} = 'Sep')))AND (((d.region = 'API')))GROUP BY a.fiscal_year , a.acct_period , a.company , g.r_system , a.system , g.orig_program , g.reference , a.acct_unit , a.sub_account , a.account , g.acct_amount , g.gltrans_description , g.apdistrib_description , g.invoice , g.base_inv_amt , g.je_type , g.po_line_nbr , g.po_num , g.poline_descr , g.quantity , g.r_item , g.source_code , g.vendor , g.vendor_vname , g.posting_date , g.effect_date , g.update_date , g.r_date , g.cmt_text , g.auto_rev[Mon Oct 07 16:28:04 2002] /IS/Worker/0x0/1034026331/Informational/0/Build-I620P0B068NativeSQL:SELECT DISTINCT a.fiscal_year, a.acct_period, a.company, g.r_system, a.system, g.orig_program, g.reference, a.acct_unit, a.sub_account, a.account, g.acct_amount, g.gltrans_description, g.apdistrib_description, g.invoice, g.base_inv_amt, g.je_type, g.po_line_nbr, g.po_num, g.poline_descr, g.quantity, g.r_item, g.source_code, g.vendor, g.vendor_vname, g.posting_date, g.effect_date, g.update_date, g.r_date, g.cmt_text, g.auto_revFROM dbo.gltrans_sum a, dbo.vw_dim_accts b, dbo.vw_glcalendar c, dbo.vw_dim_org_div_reg d, dbo.vw_dim_org_dist e, dbo.vw_dim_org_AU f, dbo.exp_drill gWHERE a.account = b.gen4AND a.fiscal_year = c.fiscal_yearAND a.company = c.companyAND a.acct_period = c.acct_periodAND a.acct_unit = f.AUAND a.company = g.companyAND a.fiscal_year = g.fiscal_yearAND a.acct_period = g.acct_periodAND a.acct_unit = g.acct_unitAND a.account = g.accountAND a.sub_account = g.sub_accountAND a.system = g.systemAND e.region = d.regionAND f.dist = e.distAND (((b.gen3 = 'RENT&UTILEXP')))AND (((a.company = 4)))AND (((a.fiscal_year = 2002)))AND ((({fn SUBSTRING({fn MONTHNAME(c.per_end_date)}, 1, 3)} = 'Sep')))AND (((d.region = 'API')))GROUP BY a.fiscal_year , a.acct_period , a.company , g.r_system , a.system , g.orig_program , g.reference , a.acct_unit , a.sub_account , a.account , g.acct_amount , g.gltrans_description , g.apdistrib_description , g.invoice , g.base_inv_amt , g.je_type , g.po_line_nbr , g.po_num , g.poline_descr , g.quantity , g.r_item , g.source_code , g.vendor , g.vendor_vname , g.posting_date , g.effect_date , g.update_date , g.r_date , g.cmt_text , g.auto_rev[Mon Oct 07 16:28:21 2002] /IS/Worker/1034026331/Informational/0/Build-I620P0B068Executed client request 'Get Drill-Through report data' in 17 seconds<<< this time (and the result set) is consistent if I execute the above query directly against the repository>>>[Mon Oct 07 16:28:21 2002] /IS/Listener/0/Informational/1051001/Build-I620P0B068Received client request Get Drill-Through report data[Mon Oct 07 16:28:21 2002] /IS/Worker/1034026331/Informational/0/Build-I620P0B068Executed client request 'Get Drill-Through report data' in 0 seconds<<< repeats the last two entries over and over for the next 12 minutes >>>[Mon Oct 07 16:40:23 2002] /IS/Listener/0/Informational/1051001/Build-I620P0B068Received client request Get Drill-Through report data[Mon Oct 07 16:40:23 2002] /IS/Worker/1034026331/Informational/0/Build-I620P0B068Executed client request 'Get Drill-Through report data' in 0 seconds[Mon Oct 07 16:40:23 2002] /IS/Listener/0/Informational/1051001/Build-I620P0B068Received client request Logout[Mon Oct 07 16:40:23 2002] /IS/Worker/1034026331/Informational/0/Build-I620P0B068Executed client request 'Terminate' in 0 seconds[Mon Oct 07 16:40:23 2002] /IS/Coordinator/0/Informational/0/Build-I620P0B068Executed client request 'Logout' in 0 seconds[Mon Oct 07 16:42:58 2002] /IS/Listener/0/Informational/1051001/Build-I620P0B068Received client request Get Log File.

    We did see this at a client but the problem has since been fixed; we are not doing the EIS work, but I could ask around to see if there was anything specifid they did to fix the issue..Another symptom we saw at that client is that it took 2-3 minutes to open a modest sized outline built with EIS.. Do you see the same issue?Tim TowApplied OLAP, Inc

  • Drill-through from Workspace not possible?

    Hello everybody,
    I am working on Hyperion System 9.3.1
    I have a cube with some drill-through reports.
    I can drill-through from Add-In Excel and WebAnalysis reports but not from Workspace.
    Example: For the same WebAnalysis report
    - when opened with WA Studio allows drill-through at double click in the cell;
    - when opened from Workspace, at double-click in the cell the Related Content windows opens up but I can't see my drill reports. Is that normal?
    Thank you in advance for your help!

    In version 11.1 they added support for cube drill-through. In 9.3.1 you'll have to do it manually. Here are some ideas
    - Create queries for your cube and relational data.
    - Limit the result of your relational data with very specific filters to avoid enormous number of rows.
    - Create your table or pivot for your cube data and add a script for cell double click.
    - Set your limit based on the intersections, set the filters for your relational query and do a database process.
    - Now show your relational table.
    HTH,
    Gerd

  • OBIEE 11G   HOLAP( drill through)   from ORACLE OLAP  to  Relaltional table

    Hi Experts...
    I have some idea that the drill through from an essbase cube to an relational cube can be possible with few limitations in OBIEE 10g. I am looking for the same feature with ORACLE OLAP option . I have OLAP cube built in 11g (leve5 - granularity to one of the dimension) , and relational has 7 levels. In OBIEE once drill down to the level 5 it has fetched data from OLAP , and going beyond to level 6 -7 then it should get the data from relational table.
    Do anyone had gone through such solution, Please kndly share your inputs and documents which would be helpful.
    Thanks
    S

    This is very easy. It's really no different from setting up OBIEE to drill from one table to another. Let's assume that you have your cube mapped in OBIEE using the OBIEE plug-in for Analytic Workspace Manager. Here is an outline of the steps:
    1. Add the dimension table and fact table to the OBIEE physical layer.
    2. Add the new level to the OBIEE dimension object in the business layer.
    3. Add the dimension table as a new logical table source to the existing dimension table in the business layer.
    4. Add the fact table as new table in the business layer.
    5. Define joins in the physical and business model as appropriate.
    6. Set set keys in the tables and the dimension as appropriate.
    7. Set the level for the new dimension table to the appropriate level in the dimension.
    Again, it's really best to just think about this as drilling from one table to another.

  • Error on the reports with drill-through links on SSRS 2012 SP2 -- Invalid URI: The Uri string is too long

    Hi, We are migrating SSRS 2008 R2 reports to SSRS 2012 SP2. (PS. SSRS 2012 SP2 has been applied.) Everything went smooth expect some reports which were using reporting services. These reports have some drilin-through actions and was passing in a huge
    xml parameter. I referred to some other posts in which there were also some similar issues like "The Uri string is too long."  but they're different. My reports can be opened and the error only occurred when accessing the drill-through actions.
    As I know, Microsoft has provided the fix for the known issue "The Uri string is too long." in sp1 but it looks it can't cover this kind of situation since I have installed the SSRS SP 2. Is there any solution? In addition, there's no such
    issue on SSRS 2008 R2.
    Thanks,
    onizga

    Hi onizga,
    According to your description that you are migrating SSRS 2008 R2 reports to SSRS 2012 SP2, after migration you got some error like “The Uri string is too long” which only occurred when accessing the drill-through actions, right?
    Usually, the issue can be caused when you try to pass some parameters that cause the URL length to exceed 65,520 characters for a Microsoft SQL Server 2012 Reporting Services (SSRS 2012), you cannot render the report, and you may receive the following error
    message:
    The value of parameter 'param' is not valid. (rsInvalidParameter).Invalid URI: The Uri string is too long.
    This is an known issue and already have the hotfix SQL Server 2012 Service Pack1 Cumulative Update 9 (CU9) as you know, you can try to reinstall this hotfix to fixed this issue:
    http://support.microsoft.com/kb/2916827 .Any issue after applying the update, please post it on the following thread or you can submit an feedback:
    http://connect.microsoft.com/SQLServer/feedback/details/788964/ssrs-2012-invalid-uri-the-uri-string-is-too-long 
    Similar threads for your reference:
    SSRS - The value of parameter 'param' is
    not valid. ---> System.UriFormatException: Invalid URI: The Uri string is too long.
    Microsoft.ReportingServices.Diagnostics.Utilities.InvalidParameterException:
    The value of parameter 'pSetOfScopes' is not valid. ---> System.UriFormatException: Invalid URI: The Uri string is too long
    If you still have any question, please feel free to ask
    Regards
    Vicky Liu
    If you have any feedback on our support, please click here

  • Creating a Detail Table Based on an Action in Another Table or Matrix to Display in the Same Report (Not a Drill-Through)

    Hello,
    I was wondering if it's possible have a matrix which shows total credits by month and have drill-down groupings to display the invoice numbers for each credit.  Then, once the drill-down is expanded for a particular month, be able to click on the invoice
    number and have another table under the matrix display the details of the invoice. 
    I don't really want a drill-through because that opens a different report in the window, what I want to be able to do is stay on the main report.  I also don't want to drill-into the invoice details from the matrix as that expands the matrix out and
    makes it unruly and ugly.  I've been playing with subreports but not able to get what I want out of it.
    I hope this makes sense - is there a way to do this in SSRS?
    Thanks!!

    Hi AvenueStuart,
    After testing the issue in my environment, we can refer to the steps below to work around the issue:
    Create a new table with the details of the invoice under the matrix.
    Add a parameter named invoice which get available values from the invoice field in the dataset.
    Right-click the [Sum(invoice)] cell to add an action with “Go to report” option, and specify the same report with the parameter below:
    Name: invoice                                                                 
    Value: [invoice]
    Right-click the table to add a filter in the table:
    Expression: [invoice]
    Operator: =
    Value: [@invoice]
    If there are any misunderstanding, please elaborate the issue for further investigation.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • How to increase number of rows displayed in Essbase drill-through report?

    Hi
    By default, the maximum number of rows per Essbase drill-through report (via Integration Services) is set to 1000. Could anyone tell me how to change this limit please?
    Regards
    Chandra

    Is this for an EIS drill through report that drills through to get RDBMS data, using spreadsheet add-in for example? If so check and see if "Maximum rows per query" in EIS is currently set at 1000 and try to increase it. (I don't recall hitting a 1000 limit in the past, perhaps your report is set at that? or if this is through Web Analysis maybe WA is governing it)
    To set/change a query governor in EIS:
    1     In the Drill-Through Reports dialog box, select a report name.
    2     Click Edit to open the Report properties dialog box.
    3     In the Report properties dialog box, select the Governors tab.
    4     In the Maximum time per query (in seconds) text box, enter the maximum query time.
    For example, to stop a query that takes longer than 100 seconds, type 100.
    5     In the Maximum rows per query text box, enter the maximum number of rows to retrieve.
    For example, to stop a query that retrieves more than 200 rows, type 200.
    6     Click OK.

  • Drill Through in Analyzer 5.0.3 Web Client

    I have an EIS created Essbase cube with drill through reports. I can access the reports using the Excel add-in and via the Analyzer Windows client and they work as expected. In the Analyzer Web client, I see the LRO indicator, but when I click on the cell I get "Cell ___ cannot be drilled on". Does the Web client support drill through, and is there additional configuration necessary to make it work?Thanks,Jim Burnham

    I didn't have the Essbase setting of "Use Grid API" turned on for the user I was testing with.Jim

  • In Drill through report pass hyperlink value as parameter to another report using ssrs 2008 R2

    Hi All,
    I have one drill through SSRS report in which if I click one hyperlink in the summmary report it should be passed as parameter for detail report, like this....
    Summary:
    AccountType
    A1
    A2
    If I click A1 then that should be passed as parameter to detail report and display A1 data in detail report
    If I click A2 then that should be passed as parameter to detail report and display A2 data in detail report.
    Please give me some ideas or expression code to achieve this in using SSRS 2008R2. Its very urgent.
    Thanks,
    RH
    sql

    Thanks the folowing is my source data for the parameter I am including to the drill through
    SELECT DISTINCT
    case
    when EA_STATUS in ('E4', 'U4', 'P5', '02', '03', '04','B2','B3','B4','12')
    then CAST('Project' AS VARCHAR(15))
    else CAST('Non-Project' AS VARCHAR(15))
    end as EA_PROJECT_GROUP_DESC
    FROM TEAMS.FMPROD_V_EA
    As you can see it has only 2 values.So how do you suggest I wirte the expression to include in the report.
    The name of the parameter I will be using is EAProjectGroup.but below is the error I am getting trying to run the report
    rsMissingFieldInDataSet] The dataset Trends contains a definition for the Field EA_PROJECT_GROUP_DESC. This field is missing from the returned result set from the data source.
    [rsErrorReadingDataSetField] The dataset Trends contains a definition for the Field EA_PROJECT_GROUP_DESC. The data extension returned an error during reading the field. There is no data for the field at position 45.
    Preview complete -- 0 errors, 72 warnings
    what does the position 45 mean?

  • BPC 7.5NW Drill-through to FIM

    Hi all,
    I upload data to BPC 7.5 NW SP06 through FIM. I tried to set up the Drill-through functionality of BPC so as to see the analysis of the trial balance uploaded in FIM, but with no success. The How-to-paper for drill-through functionality for NW, uses drill-through only to BEx and ECC, not FIM. In SAP help for BPC NW, there is an example for FIM but it is too general.Has anyone faced the same situation? Or any idea?
    Thanks
    Regards,
    Maria

    Hi,
    I am trying DT to ECC funcationality in BPC 7.5 NW version. I am trying to TD from a P&L report based on hierarchies.
    I would like to know how people are using drill-through on parent level nodes within their BPC hierarchies.
    I hear that there is something called which is a hierarchical view of their objects/metadata in ECC. How is it related to BPC drill through?
    In my example, the DT is from a P&L report that consists of Functoinal Area & P_Account (with a mix of hier nodes and base members) and Company Code in Colum (in summarized columns like N. America, Europe, etc). The current View migth have profiit center hier nodes that comprise of multiple base member profit centers.
    We would like to to drill thorugh from a cell  that is an intersection of FuncArea-Account parent node and Comoamy Code parent node (N. America) to an ECC profict center transaction - K5EZ (Profit center line item).
    Any help/guidance with some documentation if possible is appreciated.
    Thanks in advance.
    Regards
    Raj

  • Error while  making relational drill through connection

    <p>Hi All,</p><p> </p><p>This Problem is related to Web Analysis report on System 9,for aceratin report I need to fetch data from RDBMS. So I tried tocreate a connection for relational drill through, but it threwerror saying connection failed.The exact message was:</p><p> </p><p>"Geeting Connection Failed",and got Exception Meassge"oracle.jdbc.driver.OracleDriver"</p><p> </p><p>Could you people suggest what cause is there behind that.</p><p>Here I would like to mention that same RDMBS I can access onworkspace through BQY.</p><p> </p><p>I'll be very thankful if somebody could help me out of this.</p><p> </p><p>Chandra</p>

    I got this error but I was working with SQL Server. The way to fix this was getting the latest JDBC drivers for SQL Server (or in your case Oracle) and adding them to the classpath.You will have to add it the the application server classpath as well since adding to the classpath on the server isnt enough.Hope this helps

  • Getting error while drill through a report

    Hi,
    I am getting this following error when I drill through a report and the OFA application freezes. I hope this is problem with the OFA installation.
    (MXMSERR) S does not exist in any attached database.
    What does it mean and what could be the problem ?
    Please let me know how to rectify the problem?
    Thanks
    Murugesan

    Hi,
    If it's not the universe limits, then I think you've hit the "MDX result contains too many cells" (more than 1million) problem.
    So, I suspect a long running query, no filters/variable restrictions, and You've probably got a dump in ST22.
    I don't know what BW you have, but if it is BW 7, do you have Enhancement Pack 01 and SP05<->10  ?
    You should check out all the latest corrections from component BW-BEX-OT-MDX
    the final proof of the pudding would be to enable MDA / SOFA log , capture the MDX SELECT statement and test it in BW MDXTEST - i bet you get the same error there.
    regards,
    H

  • Unable to create a drill through or drill down report

     
    Hello I am new to report builder (or any SQL related tools) and I am still learning to do a many things.
    Background: I have managed to design a pie-chart report that shows Number of Assets, and when they were maintained. The fields I have for the table seven columns
    Asset ID (e. 123456), Accepted On Date(dd/mm/yyyy), Last Serviced on Date(dd/mm/yyyy),  Min. Service interval per year (e.g 1,2,3,4) Overall Risk Score (between 0-16), Risk Category (e.g Green or Orange), maintenance
    Compliance (e.g Compliant or No Proof)
    I get an extract in .rdl format from our Asset Database (CRM) which includes Asset ID, Accepted On Dates, Last Serviced on Date, Min Service Interval per year, Overall Risk Score
    I add calculated field of Risk Category as Orange or Green, where an overall risk score > 8 will make the Asset ID fall in the Orange Category and any risk < 8 will be Green Category
    The second calculated field is the Maintenance Compliance, where I have added formula when certain conditions between Accepted On Date(dd/mm/yyyy), Last Serviced on Date(dd/mm/yyyy) and Min. Service interval per year, are
    met. When they are met, it is "Compliant", when not met it is "No Proof".
    The pie chart has
    Values as Count(Risk Category)
    category Groups (Risk category) + (Maintenance Compliance)
    Probelm: I am trying to design a drill down or a drill through report where if I click on the slice, the table displayed below will only contain values (or rows) corresponding to that region. So, if I click on Green - Compliant,
    then a table should appear which shows only asset values which have Risk category value Green and Maintenance Compliance Value as Compliant
    Please let me know if anyone can help     (Link Copy Paste in browser: https://drive.google.com/file/d/0BzjF_kUloVtkSUk0YlZDbFVYR3c/edit?usp=sharing)
    Note: I am doing this report offline, as the server connection does not work. So i usually edit the .rdl file and then upload it to the server to check if it runs

    Hello Alisa
    Thank you for the response. I tried doing the following, and I am pretty sure I must be doing something wrong because of my inexperience with SQL tools.
    But I get an error while I try to upload it onto the server. I have uploaded my files here
    https://drive.google.com/folderview?id=0BzjF_kUloVtkSjhCd3J6VU11alk&usp=sharing
    Is it possible to check these. The files are (.rdl file, error log text file, screen shot of error when uploading to server)
    Also, in your explanation you mentioned
    Add a dataset (DataSet1) in the report with the corresponding fields (when I try to add another data set(DS1) with the values shown in DSMain (my main report), it does not allow populate the query fields of the main report (DSMain). So I have to manually
    add all query field + the two calculated fields (Risk_Category & Maintenance_Compliance). Add another dataset (DataSet2) with RiskCategory, MaintenanceCompliance two fields (I added another Dataset and named it as DS2, and copied the same Calculated
    fields from DSMain (main report) for Risk_Category & Maintenance_Compliance
    Add two parameters (RiskCategory, MaintenanceCompliance) in the report, get these Available value from DataSet2 fields.( two parameters appears new
    RiskCategory --> Dataset-DS2, Value Field- Risk_Category, Label Field: Risk_Category
    MaintenanceCompliance --> Dataset-DS2, Value Field- Maintenance_Compliance, Label Field: Maintenance_Compliance
    3. Add two filters of DataSet1. Please refer to the following values:
    Expression: [RiskCategory]
    Operator: =
    Value: [@RiskCategory](I am not sure I have clearly understood this part. As my values in Dataset 1 (DS1) are the same as the main report (DSMain), the query + calculated fields are the same. Hence my Dataset 1 (DS1) will also have a Calculated field
    as Risk_Category and Maintenance_Compliance. And do I have to add these values as filters in DataSet2 (DS2) ? In which am actually manually typing Expression: [RiskCategory]
    Operator: = 
    Value: [@RiskCategory] 
    Expression: [MaintenanceCompliance] 
    Operator: = 
    Value: [@MaintenanceCompliance]
    Main Report
    3. Add the subreport below “Specify a report”. (I had to give a random name as 'DrillThrough' in this field. Am I doing something wrong)
    4. Click Add icon to add parameter to run the subreport. Please refer to the following values:
    Name: RiskCategory (Note: This is parameter name in the subreport.)      Value: RiskCategory
    Name: MaintenanceCompliance         Valeu: MaintenanceCompliance
    (I had to manually type the Name & Value fields, as they did not appear in the drop down list when I click on add)
    I am sure by now you must have realised how amateur I am with this tool
    Please let me know
    Thank you once again for being patient
    Silent_Tracker

  • Drill through reports are not working fine in share point server

    I Have a master report with four parameters and child report with two parameters
    I deployed these two reports in share point server , my scenario is i am navigating from my parent report to child report using action (Drill Through Report Concept)
    First i clicked on parent report it will ask select parameters , i have selected all parameter and click on apply in share point it will display the parent report content .
    In parent report i have link to navigate child report . if i click the link it will redirect to child report and displays the child report content perfectly. upto this step every thing working fine now problem is comes to picture
    I have back to in my child report when i click the that button it redirects from child to parent
    But earlier selected parameters values are lossed and the parent report again asked for me to select parameters
    Can you please explain me because we have migratiojn from ssrs report manager to share point .

    Hi All,
    Finally i got the solution there is small difference between SSRS Native mode and share point integrated mode
    To overcome this issue explicitly we have to change our report expression code for SharePoint Integration mode before deployment. We have to change URL
    Preparation code in the expression in report.
    Below is the sample URL
    ="http://<<site url>>/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl"+"=/ssrs/INT/Report.rdl&rp:parameter1="+CStr(Parameters!parameter1.Value)+"&rp:parameter2="+CStr(Parameters!parameter2.Value)+"&rc:Parameters=True"
    The only difference between our SSRS Report manager report expression and share point integrated mode report expression is
    “rp:”
    value prefixed with every parameter.
    After fixing this code I am able to see the previously selected values in Parent report below are the screen shots

Maybe you are looking for

  • Aging algorithm...

    Hey there.. Can anyone give any insights on the aging algorithm that TM uses? I mean this application is going to back up on a regular schedule until all 500GB on the drive is consumed.. but then what? How does it decided what to "get rid" of in orde

  • How can I get a Visa Reference Number on a Spectrum Analyzer?

    I have a GPIB Address of 18 on a 8593 EM Spectrum Analyzer. How can I get a VISA reference Number for my VI program

  • AT SELECTION-SCREEN defined in inlcude

    Hi all, I use the inlcude BDCRECX1 within my program. In the include, the "AT SELECTION-SCREEN" event is defined. Within my main program, I defined a pushbutton   SELECTION-SCREEN BEGIN OF BLOCK B99.   SELECTION-SCREEN PUSHBUTTON /1(30) DOKU       US

  • Apple ID locked every two days

    Over the years, my Apple ID has been locked due to someone entering the password incorrectly too many times. This was never me. In order to provide security, I set up two factor authentication on both my apple ID and all email addresses (gmail and ya

  • IPhoto 11 cannot order calendar/freeze on account preferences

    I am using iPhoto 11 on a Mac Notebook. Every year, my husband creates and orders a calendar through iPhoto. This year, we upgraded to iPhoto 11 and we were not able to place an order. The order pages were blank. We went to the iPhotos>Preferences>Ac