DBA Data[Home] [Help]

APPS.WIP_CFMPROC_PRIV dependencies on WIP_LOGGER

Line 19: l_params wip_logger.param_tbl_t;

15: l_wipEntityID number;
16: l_success number;
17: l_primaryQty number;
18: l_lpnID number;
19: l_params wip_logger.param_tbl_t;
20: l_returnStatus varchar2(1);
21: l_msgCount number;
22: l_msgData varchar2(2000);
23: l_logLevel NUMBER := fnd_log.g_current_runtime_level;

Line 33: wip_logger.entryPoint(p_procName => 'wip_cfmProc_priv.processTemp',

29: l_params(1).paramName := 'p_initMsgList';
30: l_params(1).paramValue := p_initMsgList;
31: l_params(2).paramName := 'p_txnTempID';
32: l_params(2).paramValue := p_txnTempID;
33: wip_logger.entryPoint(p_procName => 'wip_cfmProc_priv.processTemp',
34: p_params => l_params,
35: x_returnStatus => x_returnStatus);
36: if(x_returnStatus <> fnd_api.g_ret_sts_success) then
37: raise fnd_api.g_exc_unexpected_error;

Line 119: wip_logger.log(p_msg => 'Calling inv_kanban_pvt.update_card_supply_status',

115: -- Step 5:
116: -- Update the kanban card status to FULL
117: if ( l_kanbanCardID is not null ) then
118: if (l_logLevel <= wip_constants.full_logging) then
119: wip_logger.log(p_msg => 'Calling inv_kanban_pvt.update_card_supply_status',
120: x_returnStatus => l_returnStatus);
121: end if;
122:
123: inv_kanban_pvt.update_card_supply_status(

Line 133: wip_logger.log(p_msg => 'inv_kanban_pvt.update_card_supply_status returns ' ||

129: p_replenish_quantity => l_primaryQty,
130: x_return_status => l_returnStatus);
131:
132: if (l_logLevel <= wip_constants.full_logging) then
133: wip_logger.log(p_msg => 'inv_kanban_pvt.update_card_supply_status returns ' ||
134: 'with status ' || l_returnStatus,
135: x_returnStatus => l_returnStatus);
136: end if;
137:

Line 148: wip_logger.log(p_msg => 'Calling qa_result_grp.enable',

144: -- Step 6:
145: -- Enable the QA results
146: if ( l_qaCollectionID is not null ) then
147: if (l_logLevel <= wip_constants.full_logging) then
148: wip_logger.log(p_msg => 'Calling qa_result_grp.enable',
149: x_returnStatus => l_returnStatus);
150: end if;
151:
152: qa_result_grp.enable(p_api_version => 1.0,

Line 167: wip_logger.log(p_msg => 'qa_result_grp.enable returns return with error ' ||

163: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');
164: fnd_message.set_token('MESSAGE', l_msgData);
165: fnd_msg_pub.add;
166: if (l_logLevel <= wip_constants.full_logging) then
167: wip_logger.log(p_msg => 'qa_result_grp.enable returns return with error ' ||
168: l_msgData,
169: x_returnStatus => l_returnStatus);
170: end if;
171: raise processing_exception;

Line 176: wip_logger.log(p_msg => 'qa_result_grp.enable returns ' ||

172: end if;
173: end if;
174:
175: if (l_logLevel <= wip_constants.trace_logging) then
176: wip_logger.log(p_msg => 'qa_result_grp.enable returns ' ||
177: 'with status ' || l_returnStatus,
178: x_returnStatus => l_returnStatus);
179: end if;
180:

Line 182: wip_logger.exitPoint(p_procName => 'wip_cfmProc_priv.processTemp',

178: x_returnStatus => l_returnStatus);
179: end if;
180:
181: if (l_logLevel <= wip_constants.trace_logging) then
182: wip_logger.exitPoint(p_procName => 'wip_cfmProc_priv.processTemp',
183: p_procReturnStatus => x_returnStatus,
184: p_msg => 'Request processed successfully!',
185: x_returnStatus => l_returnStatus); --discard logging return status
186: end if;

Line 195: wip_logger.exitPoint(p_procName => 'wip_cfmProc_priv.processTemp',

191: rollback to wip_cfmproc_s0;
192: wip_flowUtil_priv.setMmttError(p_txnTempID,
193: 'Processing Error');
194: if (l_logLevel <= wip_constants.trace_logging) then
195: wip_logger.exitPoint(p_procName => 'wip_cfmProc_priv.processTemp',
196: p_procReturnStatus => x_returnStatus,
197: p_msg => 'Request failed!',
198: x_returnStatus => l_returnStatus); --discard logging return status
199: end if;

Line 206: wip_logger.exitPoint(p_procName => 'wip_cfmProc_priv.processTemp',

202: rollback to wip_cfmproc_s0;
203: wip_flowUtil_priv.setMmttError(p_txnTempID,
204: 'Unexpected Error');
205: if (l_logLevel <= wip_constants.trace_logging) then
206: wip_logger.exitPoint(p_procName => 'wip_cfmProc_priv.processTemp',
207: p_procReturnStatus => x_returnStatus,
208: p_msg => 'unexpected error: ' || SQLERRM,
209: x_returnStatus => l_returnStatus); --discard logging return status
210: end if;

Line 223: l_params wip_logger.param_tbl_t;

219: p_txnTmpID in number,
220: p_processInv in varchar2,
221: x_returnStatus out nocopy varchar2,
222: x_errorMessage out nocopy varchar2) is
223: l_params wip_logger.param_tbl_t;
224: l_returnStatus varchar2(1);
225: l_txnHeaderID number;
226: l_cplTxnID number;
227: l_wipEntityID number;

Line 242: wip_logger.entryPoint(p_procName => 'wip_cfmProc_priv.processMobile',

238: l_params(2).paramName := 'p_txnTmpID';
239: l_params(2).paramValue := p_txnTmpID;
240: l_params(3).paramName := 'p_processInv';
241: l_params(3).paramValue := p_processInv;
242: wip_logger.entryPoint(p_procName => 'wip_cfmProc_priv.processMobile',
243: p_params => l_params,
244: x_returnStatus => x_returnStatus);
245: if(x_returnStatus <> fnd_api.g_ret_sts_success) then
246: raise fnd_api.g_exc_unexpected_error;

Line 297: wip_logger.exitPoint(p_procName => 'wip_cfmProc_priv.processMobile',

293: wip_utilities.get_message_stack(p_msg => x_errorMessage,
294: p_delete_stack => fnd_api.g_false);
295: end if;
296: if (l_logLevel <= wip_constants.trace_logging) then
297: wip_logger.exitPoint(p_procName => 'wip_cfmProc_priv.processMobile',
298: p_procReturnStatus => x_returnStatus,
299: p_msg => x_errorMessage,
300: x_returnStatus => l_returnStatus); --discard logging return status
301: wip_logger.cleanUp(l_returnStatus);

Line 301: wip_logger.cleanUp(l_returnStatus);

297: wip_logger.exitPoint(p_procName => 'wip_cfmProc_priv.processMobile',
298: p_procReturnStatus => x_returnStatus,
299: p_msg => x_errorMessage,
300: x_returnStatus => l_returnStatus); --discard logging return status
301: wip_logger.cleanUp(l_returnStatus);
302: end if;
303: return;
304: end if;
305:

Line 307: wip_logger.exitPoint(p_procName => 'wip_cfmProc_priv.processMobile',

303: return;
304: end if;
305:
306: if (l_logLevel <= wip_constants.trace_logging) then
307: wip_logger.exitPoint(p_procName => 'wip_cfmProc_priv.processMobile',
308: p_procReturnStatus => x_returnStatus,
309: p_msg => 'Finished processing successfully!',
310: x_returnStatus => l_returnStatus); --discard logging return status
311: wip_logger.cleanUp(l_returnStatus);

Line 311: wip_logger.cleanUp(l_returnStatus);

307: wip_logger.exitPoint(p_procName => 'wip_cfmProc_priv.processMobile',
308: p_procReturnStatus => x_returnStatus,
309: p_msg => 'Finished processing successfully!',
310: x_returnStatus => l_returnStatus); --discard logging return status
311: wip_logger.cleanUp(l_returnStatus);
312: end if;
313: end processMobile;
314:
315: