Hello,
Please help me for extracting the scheduled report details from BO Activity tables. (Not form query builder).
The Scheduled instance status can be (Success / Failed)
I have used the below query to extract one report from BO Activity tables. But I am getting duplicate record.
Ex: Actual report scheduled on "01-Jan-14" & "05-Jan-14" and both day got sucees. But the below query result gives two record on "01-Jan-14" different timing. ("01-Jan-14 4:00:00 PM" , "01-Jan-14 4:03:00 PM") Just 3 min interval.
select * from CE_AUDIT.AUDIT_EVENT_JAN,
(select * from CE_AUDIT.AUDIT_DETAIL_JAN )B
--Where rtrim(to_char(CE_AUDIT.AUDIT_DETAIL_JAN.Detail_Text),chr(0)) like '76 COM Defect Repor%'
where CE_AUDIT.AUDIT_EVENT_JAN.server_cuid = B.server_cuid
and CE_AUDIT.AUDIT_EVENT_JAN.Event_ID = B.Event_ID
and CE_AUDIT.AUDIT_EVENT_JAN.Event_Type_ID IN ( 327681, 327682, 327683 )