DBA Data[Home] [Help]

APPS.WIP_INTERFACE_ERR_UTILS dependencies on WIP_CONSTANTS

Line 54: if (l_logLevel <= wip_constants.trace_logging) then

50: n_errors := current_errors.count;
51:
52: WHILE (error_no <= n_errors) LOOP
53: l_logLevel := fnd_log.g_current_runtime_level;
54: if (l_logLevel <= wip_constants.trace_logging) then
55: wip_logger.log('error:' || current_errors(error_no).error, l_dummy2);
56: end if;
57: -- Added the following stmt for bug fix 5124822
58: -- selecting the audit column values from wip_job_schedule_interface

Line 64: l_WJSI_error_exist := WIP_CONSTANTS.YES;

60: -- We cannot derive these values in insert_error api, as the insert_error api
61: -- is autonomous transaction api.
62:
63: /* Fix for bug 5507379. Errors can be either in WJSI or in WJDI */
64: l_WJSI_error_exist := WIP_CONSTANTS.YES;
65: begin
66: select last_update_login,
67: last_updated_by,
68: created_by

Line 76: l_WJSI_error_exist := WIP_CONSTANTS.NO;

72: from wip_job_schedule_interface
73: where interface_id = current_errors(error_no).interface_id;
74: exception
75: when no_data_found then
76: l_WJSI_error_exist := WIP_CONSTANTS.NO;
77: end;
78:
79: if (l_WJSI_error_exist = WIP_CONSTANTS.NO) then
80: select last_update_login,

Line 79: if (l_WJSI_error_exist = WIP_CONSTANTS.NO) then

75: when no_data_found then
76: l_WJSI_error_exist := WIP_CONSTANTS.NO;
77: end;
78:
79: if (l_WJSI_error_exist = WIP_CONSTANTS.NO) then
80: select last_update_login,
81: last_updated_by,
82: created_by
83: into l_last_update_login,