I have a requirement from customer needs to build a report which shows the details of scheduled BIP jobs, which are not triggered even scheduled time reached, so for that i need add condition for 'next scheduled run',Can someone please help me ?
Please check the query given below link:
Query to find BIP report schedule details — Cloud Customer Connect
Thanks.
Thanks Mandeepguptha for your responce . I gone through the link which you shared but the tables which mentioned there ,i dont have access in BI publisher page ,can you please suggest how this table's can be accessed in cloud.
XMLP_SCHED_DATA,XMLP_SCHED_DELIVERY,XMLP_SCHED_JOB,XMLP_SCHED_OUTPUT
Can you please try the following query?
select prop.value report_url, hist.* FROM fusion_ora_ess.request_property prop, fusion_ora_ess.request_history hist WHERE hist.requestid= prop.requestid AND hist.jobtype = 'JobType://oracle/bip/ess/EssBipJobType' and prop.name = 'report_url'
Hope this help.
Cheers,
Hi Bhaskar , Thanks for your response. I ran the query but there are no details of Scheduled Frequency in History table.
Please check below query:
WITH schedule_history AS ( SELECT DISTINCT rh.username scheduled_user_name ,rp.value submitted_job_name ,rh.requestedstart schedule_start_date ,rh.requestedend schedule_end_date ,rh.scheduled next_run_date ,rh.parentrequestid ,rh.requestid ,(SELECT max(rh2.requestid) FROM fusion.ess_request_history rh2 WHERE rh2.parentrequestid = rh.parentrequestid AND rh.username = rh2.username AND rh2.state = 1) next_requestid FROM fusion.ess_request_property rp ,fusion.ess_request_history rh ,fusion.ess_request_property rp_Param WHERE rp.value LIKE '%XX%TEST%%' AND rh.requestid = rp.requestid AND rh.processstart >= TRUNC(SYSDATE,'MONTH') AND rp_Param.requestid = rp.requestid AND rp.NAME = 'ujobname' AND rh.requestid = (select max(rh2.requestid) from fusion.ess_request_history rh2 where rh2.parentrequestid = rh.parentrequestid and rh.USERNAME = rh2.USERNAME AND rh2.state <> 1) ) SELECT schedule_history.scheduled_user_name ,schedule_history.submitted_job_name ,schedule_history.schedule_start_date ,schedule_history.schedule_end_date ,rh.scheduled next_schedule_date FROM schedule_history schedule_history ,fusion.ess_request_history rh WHERE schedule_history.parentrequestid = rh.parentrequestid AND schedule_history.next_requestid = rh.requestid
I have created a detailed query with schedule interval and details. Check it on below link:
https://fusionhcmconsulting.com/2025/01/bip-report-to-extract-bip-scheduled-jobs/
Thank you very much @MandeepGupta!
Much appreciated.
I created a XLSX template in Oracle Analytics Publisher Desktop 26.01.01 and uploaded the template to a BI Publisher report in OTBI. Things worked initially, but this morning when running the report I received an error: The report cannot be rendered because of an error, please contact the administrator. Error Detail:…
Hi All, I have a question regarding the BI Publisher Outputs. I have configured the rtf template output as Excel but when the XML Report Publisher program completes and I click on View Output, the output opens in a browser and renders as an HTML. Can some one please assist why this is so. The BI Publisher version is…
The issue is related to the NordPass browser extension installed via our corporate policy. Issue observed: Users were unable to upload custom BI Publisher templates in Oracle Fusion (BI Publisher / Oracle Analytics) using Microsoft Edge and Google Chrome. The upload dialog remained indefinitely at "Uploading, please…
Hi, We are scheduling a report to be sent out every week. We were wondering if it was possible to keep the latest date that the report ran as a parameter somewhere so that we could use that to only fetch the values in the report which have a latest update time of after the last run of the report? This way we'd only be…