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 34: wip_logger.entryPoint(p_procName => 'wip_cfmProc_priv.processTemp',

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Line 226: l_params wip_logger.param_tbl_t;

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

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

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

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

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

Line 304: wip_logger.cleanUp(l_returnStatus);

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

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

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

Line 314: wip_logger.cleanUp(l_returnStatus);

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