Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

OWB - No Exceptions/Audit Code Generated..

Status
Not open for further replies.

jerryselend

Technical User
Jul 27, 2003
1
AU

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,

.......
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top