Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 16 Oracle Analytics Lounge
- 216 Oracle Analytics News
- 43 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 79 Oracle Analytics Trainings
- 15 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
BI Publisher, Location of Email Addresses for Recurring Reports (Under Destination Type = Email)

Summary
BI Publisher, Location of Email Addresses for Recurring Reports (Under Destination Type = Email)
Content
Hello,
I need some help finding the BIP Table that email addresses are stored in for recurring reports. I have located the reports but cannot locate email addresses the reports will be delivered to.
I have close to 70 recurring scheduled reports that I need to send the business a spreadsheet of 1. Report Name. 2. Emails that the report will be distributed to.
Again... only need to know what table to add to find the Email Addresses that the reports will be delivered to. (See Attachment for Application Screenshot)
Thanks in advance.
Kevin
Select
*
From
xmlp_sched_job sj
Where
sj.schedule_description != 'sched_single'
And sj.status != 'P'
Order By
sj.report_url
Answers
-
Check "delivery_parameters" column in the same table.
0 -
utl_raw.cast_to_varchar2(dbms_lob.substr(DELIVERY_PARAMETERS,2000,1)) DELIVERY_PARAMETERS_TXT
0