DBA Data[Home] [Help]

APPS.WIP_INTERFACE_ERR_UTILS dependencies on WIP_LOGGER

Line 53: wip_logger.log('error:' || current_errors(error_no).error, l_dummy2);

49:
50: WHILE (error_no <= n_errors) LOOP
51: l_logLevel := fnd_log.g_current_runtime_level;
52: if (l_logLevel <= wip_constants.trace_logging) then
53: wip_logger.log('error:' || current_errors(error_no).error, l_dummy2);
54: end if;
55: -- Added the following stmt for bug fix 5124822
56: -- selecting the audit column values from wip_job_schedule_interface
57: -- and pass it to api that inserts into interface errors table.

Line 78: --wip_logger.log('error - rec not found in WJSI', l_dummy2);

74: where interface_id = current_errors(error_no).interface_id;
75: exception
76: when no_data_found then
77: l_WJSI_error_exist := WIP_CONSTANTS.NO;
78: --wip_logger.log('error - rec not found in WJSI', l_dummy2);
79: end;
80:
81: if (l_WJSI_error_exist = WIP_CONSTANTS.NO) then
82: begin

Line 94: --wip_logger.log('error - rec not found in WJDI', l_dummy2);

90: where interface_id = current_errors(error_no).interface_id;
91: exception
92: when no_data_found then
93: l_WJSI_error_exist := WIP_CONSTANTS.NO;
94: --wip_logger.log('error - rec not found in WJDI', l_dummy2);
95: end;
96: end if;
97:
98: */

Line 124: wip_logger.cleanup(l_dummy2);

120: --commit;
121:
122: current_errors.delete ;
123:
124: wip_logger.cleanup(l_dummy2);
125:
126: END load_errors;
127:
128: