Categories
- All Categories
- Oracle Analytics and AI Learning Hub
- 44 Oracle Analytics and AI Sharing Center
- 20 Oracle Analytics and AI Lounge
- 278 Oracle Analytics and AI News
- 56 Oracle Analytics and AI Videos
- 16.2K Oracle Analytics and AI Forums
- 6.4K Oracle Analytics and AI Labs
- Oracle Analytics and AI User Groups
- 103 Oracle Analytics and AI Trainings
- 20 Oracle Analytics and AI Challenge
- Find Partners
- For Partners
Dynamic delivery of Output formats in Email Scheduling using BIP
Summary
Dynamic delivery of Output formats in Email Scheduling using BIP
Content
Is it possible to have Dynamic delivery of Output formats in Email Scheduling using BIP.
For Ex: I need a file name ABC_03022017 in the E-mail attachment as output while scheduling
Answers
-
Submit BI publisher report using pl/sql code using FND_REQUEST.SUBMIT_REQUEST call and call below code to call XML bursting
FND_REQUEST.SUBMIT_REQUEST
(application => 'XDO',
program => 'XDOBURSTREP',
description => NULL,
start_time => NULL,
sub_request => FALSE,
argument1 => 'N',
argument2 => TO_CHAR(l_req_id)); -- request id of the report output CP
you also need to define bursting control file.
0