DBA Data[Home] [Help]

APPS.WIP_CFMPROC_PRIV dependencies on WIP_CONSTANTS

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

24: begin
25:
26: x_returnStatus := fnd_api.g_ret_sts_success;
27:
28: if (l_logLevel <= wip_constants.trace_logging) then
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;

Line 118: if (l_logLevel <= wip_constants.full_logging) then

114:
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:

Line 132: if (l_logLevel <= wip_constants.full_logging) then

128: p_document_detail_id => null,
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;

Line 147: if (l_logLevel <= wip_constants.full_logging) then

143:
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:

Line 166: if (l_logLevel <= wip_constants.full_logging) then

162: if ( l_returnStatus <> 'S' ) then
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;

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

171: raise processing_exception;
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;

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

177: 'with status ' || l_returnStatus,
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

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

190: x_returnStatus := fnd_api.g_ret_sts_error;
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

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

201: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
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

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

231: savepoint wip_cfmproc_s100;
232:
233: x_returnStatus := fnd_api.g_ret_sts_success;
234:
235: if (l_logLevel <= wip_constants.trace_logging) then
236: l_params(1).paramName := 'p_txnHdrID';
237: l_params(1).paramValue := p_txnHdrID;
238: l_params(2).paramName := 'p_txnTmpID';
239: l_params(2).paramValue := p_txnTmpID;

Line 276: p_txnMode => wip_constants.online,

272: -- process the request
273: if(fnd_api.to_boolean(p_processInv)) then
274: wip_mtlTempProc_priv.processTemp(p_txnHdrID => p_txnHdrID,
275: p_initMsgList => fnd_api.g_true,
276: p_txnMode => wip_constants.online,
277: p_destroyQtyTrees => fnd_api.g_true,
278: p_endDebug => fnd_api.g_false,
279: x_returnStatus => x_returnStatus,
280: x_errorMsg => x_errorMessage);

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

292: if(x_errorMessage is null) then
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

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

302: end if;
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