Categories
- All Categories
- 143 Oracle Analytics News
- 27 Oracle Analytics Videos
- 14.7K Oracle Analytics Forums
- 5.7K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 54 Oracle Analytics Trainings
- 12 Oracle Analytics Data Visualizations Challenge
- 4 Oracle Analytics Career
- 2 Oracle Analytics Industry
- Find Partners
- For Partners
Load Data from Oracle BI Publisher into Fusion Analytics Warehouse

Hi Team
We have enabled the Load Data from Oracle BI Publisher into Fusion Analytics Warehouse preview functionality and we are trying to pass the report parameter (Report Configuration) but getting fallowing error, Can you please help us on the same if you have faced similar issue.
Please find the below screenshot.
Error Message:
=======================================
Report parameters, along with its respective values, is missing for the Organization-Review-Report report in BIP connection properties. Please provide these details in the "Report Config Parameters" field in connection properties and retry.
Thanks in advance.
Answers
-
Reports with parameters need to define the parameter values in Report Configuration connection property. The parameter name and value need to be provided in a JSON format. Please check below sample json syntax expected:
[
{
"reportPath": "/~it_security_manager/User_Report.xdo",
"runInChunkMode": true,
"params": [
{
"name": "lastUpdateDate",
"value": "__lastUpdateDate__"
}
]
},
{
"reportPath": "/~it_security_manager/Department_Report.xdo",
"runInChunkMode": false,
"params": [
{
"name": "location",
"value": "S1- Chicago"
}
]
}
]
0