Pass a parameter value from one BIP report to another — Oracle Analytics

Oracle Analytics Publisher

Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture

Pass a parameter value from one BIP report to another

Received Response
249
Views
1
Comments

I am trying to create an RTF template with a URL that passes a parameter value from one BIP report to another BIP report.

My summary data model creates a table with CATEGORY and AMOUNT. And in the where clause it filters on a parameters p_Category and p_Location (even though Location is not a field in the data model, I still give the option to filter on Location in the parameter).

  • Category1 100
  • Category2 200

I also have a detail data model with CATEGORY, LOCATION, and AMOUNT. And it also has parameters for p_Category and p_Location.

  • Category1 Location1 30
  • Category1 Location2 70
  • Category2 Location1 50
  • Category2 Location2 150

Both data models function as expected.

On my RTF template for the summary report with AMOUNT by CATEGORY, I want to build a URL on the AMOUNT that links to the detail report by CATEGORY and LOCATION based on the selections of the 2 parameters. Since CATEGORY is a field in my data model, I can use this syntax in my URL and it works great:

&_paramsp_Category=%7b.//CATEGORY%7d

But because Location is not a field in my data model, I need to pass the parameter value, not the field value, to the parameter value in the detail report. Something like this:

&_paramsp_Location=<value selected in parameter>

I cant find the correct syntax for doing this.

Answers