DBA Data[Home] [Help]

APPS.WIP_LOGGER dependencies on WIP_CONSTANTS

Line 24: write(p_logLevel => wip_constants.full_logging,

20:
21: procedure log(p_msg IN VARCHAR2,
22: x_returnStatus out NOCOPY VARCHAR2) is
23: begin
24: write(p_logLevel => wip_constants.full_logging,
25: p_msg => p_msg,
26: x_returnStatus => x_returnStatus);
27: end log;
28:

Line 39: p_logLevel => wip_constants.full_logging,

35:
36: g_moduleTbl(nvl(g_moduleTbl.last, 0) + 1) := 'wip.plsql.' || p_procName;
37:
38: write(p_msg => '[begin ' || p_procName || ']',
39: p_logLevel => wip_constants.full_logging,
40: x_returnStatus => x_returnStatus);
41: if(x_returnStatus <> fnd_api.g_ret_sts_success) then
42: raise fnd_api.g_exc_unexpected_error;
43: end if;

Line 46: p_logLevel => wip_constants.full_logging,

42: raise fnd_api.g_exc_unexpected_error;
43: end if;
44: for i in 1..p_params.count loop
45: write(p_msg => ' ' || p_params(i).paramName || ': ' || p_params(i).paramValue,
46: p_logLevel => wip_constants.full_logging,
47: x_returnStatus => x_returnStatus);
48: if(x_returnStatus <> fnd_api.g_ret_sts_success) then
49: raise fnd_api.g_exc_unexpected_error;
50: end if;

Line 66: p_logLevel => wip_constants.full_logging,

62: begin
63: x_returnStatus := fnd_api.g_ret_sts_success;
64:
65: write(p_msg => '[end ' || p_procName || ']',
66: p_logLevel => wip_constants.full_logging,
67: x_returnStatus => x_returnStatus);
68: if(x_returnStatus <> fnd_api.g_ret_sts_success) then
69: raise fnd_api.g_exc_unexpected_error;
70: end if;

Line 73: p_logLevel => wip_constants.full_logging,

69: raise fnd_api.g_exc_unexpected_error;
70: end if;
71:
72: write(p_msg => ' return status: ' || p_procReturnStatus,
73: p_logLevel => wip_constants.full_logging,
74: x_returnStatus => x_returnStatus);
75: if(x_returnStatus <> fnd_api.g_ret_sts_success) then
76: raise fnd_api.g_exc_unexpected_error;
77: end if;

Line 80: p_logLevel => wip_constants.full_logging,

76: raise fnd_api.g_exc_unexpected_error;
77: end if;
78:
79: write(p_msg => ' info: ' || p_msg,
80: p_logLevel => wip_constants.full_logging,
81: x_returnStatus => x_returnStatus);
82: if(x_returnStatus <> fnd_api.g_ret_sts_success) then
83: raise fnd_api.g_exc_unexpected_error;
84: end if;

Line 100: p_logLevel => wip_constants.full_logging,

96:
97: procedure cleanUp(x_returnStatus out NOCOPY VARCHAR2) is
98: begin
99: write(p_msg => 'Session ' || g_sessionID || ': ended on ' || to_char(sysdate, 'MM/DD/YYYY HH24:MI:SS'),
100: p_logLevel => wip_constants.full_logging,
101: x_returnStatus => x_returnStatus);
102: g_sessionID := -1;
103: g_indentLevel := 0;
104: g_moduleTbl.delete;

Line 190: p_logLevel => wip_constants.trace_logging,

186: into g_sessionID
187: from dual;
188: end if;
189: write(p_msg => 'Session ' || g_sessionID || ': started on ' || to_char(sysdate, 'MM/DD/YYYY HH24:MI:SS'),
190: p_logLevel => wip_constants.trace_logging,
191: x_returnStatus => x_returnStatus);
192: end init;
193: end wip_logger;