Categories
- All Categories
- Oracle Analytics Learning Hub
- 30 Oracle Analytics Sharing Center
- 18 Oracle Analytics Lounge
- 238 Oracle Analytics News
- 45 Oracle Analytics Videos
- 16K Oracle Analytics Forums
- 6.2K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 88 Oracle Analytics Trainings
- 15 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
BIP Bursting issue
Summary
BIP Bursting issue
Content
Hi,
We are trying to implement bursting on our BIP report. When we are scheduling the report, we are seeing the error message as below
"oracle.xdo.servlet.scheduler.ProcessingException: Error getting report data"
Below is the bursting SQL we have used.
select Distinct(EmailID) KEY,
'Allocated-Commingled_Template' as TEMPLATE,
'RTF' TEMPLATE_FORMAT,
'en-US' LOCALE,
'PDF' OUTPUT_FORMAT,
'EMAIL' DEL_CHANNEL,
EmailID PARAMETER1,
'<1234@oracle.com>' PARAMETER2,
'<1234@oracle.com>' PARAMETER3,
'Subject: Your Invoices' PARAMETER4,
'Hi' PARAMETER5,
'true' PARAMETER6,
'donotreply@mycompany.com' PARAMETER7
from BIP_POC_DataModel
Can some one help with this?
Answers
-
I assume the BIP report runs fine when bursting is not used, in that case does the bursting definition posted run successfully if run from SQL client like SQL Developer?
0 -
Why are you querying from DUAL, isn't BIP_POC_DataModel a table? Is your data model created using SQL query?
Edit: The "BIP_POC_DataModel' should be a table you can query (OBIEE SA or a database table/view) and it should not be the name of the dataset.
0 -
And BIP is working fine without the Bursting definition.
0 -
Hi George,
Thanks for your response.
That SQL is working fine in SQL developer when we are firing the Query on Dual table.
The 'EmailID' that we are giving as Parameter1 is a column from our data model. Not sure if it is getting loaded.
Thanks
0 -
Hi George,
We have created a Physical database table and this resolved the issue.
Thank you so much!0