You
can create your own Oracle Warehouse Builder (OWB) Runtime repository
log to view log of mapping execution. It provides easier access rather
that using OWB Runtime Audit browser, which in my opinion rather slow
and heavy. Using OWB public view API you can create the view using the
following query
CREATE OR REPLACE VIEW DWH_RT_V
(MAP_RUN_ID, EXECUTION_AUDIT_ID, MAP_NAME, START_TIME, END_TIME,
ELAPSE_TIME, RUN_STATUS, NUMBER_RECORDS_SELECTED, NUMBER_RECORDS_INSERTED, NUMBER_RECORDS_UPDATED,
NUMBER_RECORDS_DELETED, NUMBER_RECORDS_DISCARDED, NUMBER_RECORDS_MERGED, EXECUTION_NAME, RETURN_RESULT,
RETURN_RESULT_NUMBER, RETURN_CODE, EXECUTION_AUDIT_STATUS, ELAPSE_TIME_TOTAL, RUN_ERROR_NUMBER,
RUN_ERROR_MESSAGE, TARGET_NAME, TARGET_COLUMN, STATEMENT, MESSAGE_SEVERITY,
MESSAGE_LINE_NUMBER, MESSAGE_TEXT, PROC_ERR_MSG, PROC_STATEMENT)
AS
SELECT a.map_run_id,
b.execution_audit_id,
a.map_name,
a.start_time,
a.end_time,
a.elapse_time,
a.run_status,
a.number_records_selected,
a.number_records_inserted,
a.number_records_updated,
a.number_records_deleted,
a.number_records_discarded,
a.number_records_merged,
b.execution_name,
b.return_result,
b.return_result_number,
b.return_code,
b.execution_audit_status,
b.elapse_time elapse_time_total,
c.run_error_number,
c.run_error_message,
c.target_name,
c.target_column,
c.statement,
d.message_severity,
d.message_line_number,
d.message_text,
e.run_error_message proc_err_msg,
e.statement proc_statement
FROM
all_rt_audit_map_runs a, all_rt_audit_executions b,
all_rt_audit_map_run_errors c, all_rt_audit_exec_messages
d,ALL_RT_AUDIT_PROC_RUN_ERRORS e
WHERE a.execution_audit_id = b.execution_audit_id
and a.map_run_id = c.map_run_id (+)
and b.execution_audit_id = d.execution_audit_id (+)
and a.map_run_id = e.map_run_id (+)