DBA Data[Home] [Help]

APPS.WIP_EAMMTLPROC_PRIV dependencies on WIP_EAMMTLPROC_PRIV

Line 1: package body wip_eamMtlProc_priv as

1: package body wip_eamMtlProc_priv as
2: /* $Header: wipemppb.pls 120.11 2011/01/03 09:48:39 vchidura ship $ */
3:
4: procedure fillIssueParamTbl(p_compRec IN wip_mtlTempProc_grp.comp_rec_t,
5: x_params OUT NOCOPY wip_logger.param_tbl_t);

Line 20: wip_logger.entryPoint(p_procName => 'wip_eamMtlProc_priv.validateTxns',

16: begin
17: if (l_logLevel <= wip_constants.trace_logging) then
18: l_params(1).paramName := 'p_txnHdrID';
19: l_params(1).paramValue := p_txnHdrID;
20: wip_logger.entryPoint(p_procName => 'wip_eamMtlProc_priv.validateTxns',
21: p_params => l_params,
22: x_returnStatus => x_returnStatus);
23: if(x_returnStatus <> fnd_api.g_ret_sts_success) then
24: raise fnd_api.g_exc_unexpected_error;

Line 363: fnd_msg_pub.add_exc_msg(p_pkg_name => 'wip_eamMtlProc_priv',

359: end if;
360: exception
361: when others then
362: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
363: fnd_msg_pub.add_exc_msg(p_pkg_name => 'wip_eamMtlProc_priv',
364: p_procedure_name => 'validateTxns',
365: p_error_text => SQLERRM);
366:
367: if (l_logLevel <= wip_constants.trace_logging) then

Line 402: wip_logger.entryPoint(p_procName => 'wip_eamMtlProc_priv.processCompTxn',

398: begin
399: if (l_logLevel <= wip_constants.trace_logging) then
400: fillIssueParamTbl(p_compRec => p_compRec,
401: x_params => l_params);
402: wip_logger.entryPoint(p_procName => 'wip_eamMtlProc_priv.processCompTxn',
403: p_params => l_params,
404: x_returnStatus => x_returnStatus);
405: if(x_returnStatus <> fnd_api.g_ret_sts_success) then
406: raise fnd_api.g_exc_unexpected_error;

Line 415: wip_logger.exitPoint(p_procName => 'wip_eamMtlProc_priv.processCompTxn',

411: if(p_compRec.eamItemType is null or
412: ((p_compRec.eamItemType <> wip_constants.rebuild_item_type) and
413: (p_compRec.eamItemType <> 1))) then
414: if (l_logLevel <= wip_constants.trace_logging) then
415: wip_logger.exitPoint(p_procName => 'wip_eamMtlProc_priv.processCompTxn',
416: p_procReturnStatus => x_returnStatus,
417: p_msg => 'success(not an eam item)',
418: x_returnStatus => l_returnStatus); --discard logging return status
419: end if;

Line 605: wip_logger.exitPoint(p_procName => 'wip_eamMtlProc_priv.processCompTxn',

601: wip_logger.log('rebuildable job creation succeeded', l_returnStatus);
602: end if;
603: end if;
604: if (l_logLevel <= wip_constants.trace_logging) then
605: wip_logger.exitPoint(p_procName => 'wip_eamMtlProc_priv.processCompTxn',
606: p_procReturnStatus => x_returnStatus,
607: p_msg => 'procedure success.',
608: x_returnStatus => l_returnStatus); --discard logging return status
609: end if;

Line 614: wip_logger.exitPoint(p_procName => 'wip_eamMtlProc_priv.processCompTxn',

610: exception
611: when fnd_api.g_exc_unexpected_error then
612: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
613: if (l_logLevel <= wip_constants.trace_logging) then
614: wip_logger.exitPoint(p_procName => 'wip_eamMtlProc_priv.processCompTxn',
615: p_procReturnStatus => x_returnStatus,
616: p_msg => l_errMsg,
617: x_returnStatus => l_returnStatus); --discard logging return status
618: end if;

Line 621: fnd_msg_pub.add_exc_msg(p_pkg_name => 'wip_eamMtlProc_priv',

617: x_returnStatus => l_returnStatus); --discard logging return status
618: end if;
619: when others then
620: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
621: fnd_msg_pub.add_exc_msg(p_pkg_name => 'wip_eamMtlProc_priv',
622: p_procedure_name => 'processCompTxn',
623: p_error_text => SQLERRM);
624: if (l_logLevel <= wip_constants.trace_logging) then
625: wip_logger.exitPoint(p_procName => 'wip_eamMtlProc_priv.processCompTxn',

Line 625: wip_logger.exitPoint(p_procName => 'wip_eamMtlProc_priv.processCompTxn',

621: fnd_msg_pub.add_exc_msg(p_pkg_name => 'wip_eamMtlProc_priv',
622: p_procedure_name => 'processCompTxn',
623: p_error_text => SQLERRM);
624: if (l_logLevel <= wip_constants.trace_logging) then
625: wip_logger.exitPoint(p_procName => 'wip_eamMtlProc_priv.processCompTxn',
626: p_procReturnStatus => x_returnStatus,
627: p_msg => 'unexpected error: ' || SQLERRM,
628: x_returnStatus => l_returnStatus); --discard logging return status
629: end if;

Line 692: end wip_eamMtlProc_priv;

688: x_params(27).paramValue := p_compRec.rebuildSerialNumber;
689:
690: end fillIssueParamTbl;
691:
692: end wip_eamMtlProc_priv;