jerryselend
Technical User
The version of OWB I am using is 9.0.1.
I am taking over another persons work. I can validate the mappings and all is ok there. When I generate the code for the mappings 4 of the 5 mappings generate exception handling and auditing code (see below), however 1 of the 5 does not.
Does anyone know why that could be?
thanks.
PS. I am referring to auditing code like this:
IF get_audit_level = AUDIT_COMPLETE THEN
WBPRTI.register_feedback_bulk(
get_runtime_audit_id,
get_step_number,
get_rowkey,
'NEW',
get_source_name,
'S',
'SELECT',
"TASKS_VIEW_TASK_ID$0".COUNT
);
END IF;
get_map_selected := get_map_selected + "ORES_TASKS_VIEW_TASK_ID$0".COUNT;
EXCEPTION
WHEN OTHERS THEN
-- register error
IF get_audit_level = AUDIT_ERROR_DETAILS OR get_audit_level = AUDIT_COMPLETE THEN
one_rowkey := WBPRTI.get_rowkey;
WBPRTI.error(
get_runtime_audit_id,
get_step_number,
.......