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.9 2008/05/07 20:24:45 fli 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 362: fnd_msg_pub.add_exc_msg(p_pkg_name => 'wip_eamMtlProc_priv',

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

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

390: begin
391: if (l_logLevel <= wip_constants.trace_logging) then
392: fillIssueParamTbl(p_compRec => p_compRec,
393: x_params => l_params);
394: wip_logger.entryPoint(p_procName => 'wip_eamMtlProc_priv.processCompTxn',
395: p_params => l_params,
396: x_returnStatus => x_returnStatus);
397: if(x_returnStatus <> fnd_api.g_ret_sts_success) then
398: raise fnd_api.g_exc_unexpected_error;

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

403: if(p_compRec.eamItemType is null or
404: ((p_compRec.eamItemType <> wip_constants.rebuild_item_type) and
405: (p_compRec.eamItemType <> 1))) then
406: if (l_logLevel <= wip_constants.trace_logging) then
407: wip_logger.exitPoint(p_procName => 'wip_eamMtlProc_priv.processCompTxn',
408: p_procReturnStatus => x_returnStatus,
409: p_msg => 'success(not an eam item)',
410: x_returnStatus => l_returnStatus); --discard logging return status
411: end if;

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

535: wip_logger.log('rebuildable job creation succeeded', l_returnStatus);
536: end if;
537: end if;
538: if (l_logLevel <= wip_constants.trace_logging) then
539: wip_logger.exitPoint(p_procName => 'wip_eamMtlProc_priv.processCompTxn',
540: p_procReturnStatus => x_returnStatus,
541: p_msg => 'procedure success.',
542: x_returnStatus => l_returnStatus); --discard logging return status
543: end if;

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

544: exception
545: when fnd_api.g_exc_unexpected_error then
546: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
547: if (l_logLevel <= wip_constants.trace_logging) then
548: wip_logger.exitPoint(p_procName => 'wip_eamMtlProc_priv.processCompTxn',
549: p_procReturnStatus => x_returnStatus,
550: p_msg => l_errMsg,
551: x_returnStatus => l_returnStatus); --discard logging return status
552: end if;

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

551: x_returnStatus => l_returnStatus); --discard logging return status
552: end if;
553: when others then
554: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
555: fnd_msg_pub.add_exc_msg(p_pkg_name => 'wip_eamMtlProc_priv',
556: p_procedure_name => 'processCompTxn',
557: p_error_text => SQLERRM);
558: if (l_logLevel <= wip_constants.trace_logging) then
559: wip_logger.exitPoint(p_procName => 'wip_eamMtlProc_priv.processCompTxn',

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

555: fnd_msg_pub.add_exc_msg(p_pkg_name => 'wip_eamMtlProc_priv',
556: p_procedure_name => 'processCompTxn',
557: p_error_text => SQLERRM);
558: if (l_logLevel <= wip_constants.trace_logging) then
559: wip_logger.exitPoint(p_procName => 'wip_eamMtlProc_priv.processCompTxn',
560: p_procReturnStatus => x_returnStatus,
561: p_msg => 'unexpected error: ' || SQLERRM,
562: x_returnStatus => l_returnStatus); --discard logging return status
563: end if;

Line 626: end wip_eamMtlProc_priv;

622: x_params(27).paramValue := p_compRec.rebuildSerialNumber;
623:
624: end fillIssueParamTbl;
625:
626: end wip_eamMtlProc_priv;