Categories
- All Categories
- 118 Oracle Analytics News
- 21 Oracle Analytics Videos
- 14.4K Oracle Analytics Forums
- 5.5K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 48 Oracle Analytics Trainings
- 6 Oracle Analytics Data Visualizations Challenge
- 4 Oracle Analytics Career
- 7 Oracle Analytics Industry
- Find Partners
- For Partners
BI Publisher Connection

Hi Team,
We are trying to export the data from fusion application by using BI publisher connect. We have created custom BI report and it has two parameters.
We have setup the BI Publisher connection as per below screenshot and also we have passed the parameter values in the 'Report Configuration' field as per below screenshot.
Test Connection and Refresh Metadata getting completed successfully but data augmentation went into error (Error message below). Please share your input if you have faced similar issue.
Report Configuration
===================================
[
{
"reportPath": "Custom/Link-To-FAW/PersonDetails/Person_Assignment_Report.xdo",
"runInChunkMode": false,
"params": [
{ "name": "p_country_code", "value": "India" }
{color:#ff0000},{ "name": "p_legal_entity_id", "value": " Electric (India) Private Limited" }{color}]
}
]
Data Augmentation Error
=======================
BI Publisher Configuration
=======================================
Answers
-
Please Check :
You can also check :
0 -
Hi @RanaAshutosh-Oracle ,
Thanks for the response. I have used below value in the 'Report Configuration' but still getting below mentioned error, Can you please help me on the same.
Report Configuration
==============================
[{"reportPath": "Custom/Link-To-FAW/PersonDetails/EMR_Person_Assignment_Report.xdo", "runInChunkMode": true, "params":[{"name": "p_country_code", "value": "India"}, { "name": "p_legal_entity_id", "value": "Electric Company (India) Private Limited"}}]]
Error Message
====================
Report parameters, along with its respective values, is missing for the EMR_Person_Assignment_Report report in BIP connection properties. Please provide these details in the "Report Config Parameters" field in connection properties and retry
0 -
Hi Vasanthakumar,
The beginning of your Report path should look more like:
"reportPath": /"Custom/Link-To-FAW/PersonDetails/EMR_Person_Assignment_Report.xdo",,"runInChunkMode": true
Regards,
John
0 -
@Vasanthakumar Ravi - Please try using below in Reports Configuration:
{"reportPath": "Custom/Link-To-FAW/PersonDetails/EMR_Person_Assignment_Report.xdo",
"runInChunkMode": true,
"params":[
{"name": "p_country_code", "value": "India"},
{ "name": "p_legal_entity_id",
"value": "Electric Company (India) Private Limited"
}
]
}1