DBA Data[Home] [Help]

APPS.WMA_MATERIAL dependencies on WIP_LOGGER

Line 27: l_params wip_logger.param_tbl_t;

23: error VARCHAR2(241); -- error message
24: mtlRec MtlRecord; -- record to populate and insert
25: procMode NUMBER;
26: l_returnStatus VARCHAR2(1);
27: l_params wip_logger.param_tbl_t;
28: l_logLevel NUMBER;
29: BEGIN
30: savepoint wmapmtlb0;
31:

Line 37: wip_logger.entryPoint(p_procName => 'wma_material.process',

33:
34: if (l_logLevel <= wip_constants.trace_logging) then
35: l_params(1).paramName := 'not printing params';
36: l_params(1).paramValue := ' ';
37: wip_logger.entryPoint(p_procName => 'wma_material.process',
38: p_params => l_params,
39: x_returnStatus => l_returnStatus);
40: end if;
41:

Line 45: wip_logger.log('before derive', l_returnStatus);

41:
42: status := 0;
43:
44: if(l_logLevel <= wip_constants.full_logging) then
45: wip_logger.log('before derive', l_returnStatus);
46: end if;
47:
48: -- derive and validate all necessary fields for insertion
49: if ( derive(param, mtlRec, error) = false ) then

Line 57: wip_logger.log('before put', l_returnStatus);

53: return;
54: end if;
55:
56: if(l_logLevel <= wip_constants.full_logging) then
57: wip_logger.log('before put', l_returnStatus);
58: end if;
59:
60: -- insert into the interface table for background processing
61: if ( put(mtlRec, error) = false ) then

Line 78: wip_logger.log('before processor', l_returnStatus);

74: -- p_txnTmpID => param.transactionTempID,
75: -- x_returnStatus => l_returnStatus);
76:
77: if(l_logLevel <= wip_constants.full_logging) then
78: wip_logger.log('before processor', l_returnStatus);
79: end if;
80:
81: wip_mtlTempProc_priv.processTemp(p_initMsgList => fnd_api.g_true,
82: p_txnHdrID => mtlRec.transaction_header_id,

Line 92: wip_logger.exitPoint(p_procName => 'wma_material.process',

88: raise fnd_api.g_exc_unexpected_error;
89: end if;
90:
91: if (l_logLevel <= wip_constants.trace_logging) then
92: wip_logger.exitPoint(p_procName => 'wma_material.process',
93: p_procReturnStatus => status,
94: p_msg => 'success',
95: x_returnStatus => l_returnStatus);
96: end if;

Line 103: wip_logger.exitPoint(p_procName => 'wma_material.process',

99: rollback to wmapmtlb0;
100: status := -1;
101: -- wip_utilities.get_message_stack(p_msg => errMessage);
102: if (l_logLevel <= wip_constants.trace_logging) then
103: wip_logger.exitPoint(p_procName => 'wma_material.process',
104: p_procReturnStatus => status,
105: p_msg => errMessage,
106: x_returnStatus => l_returnStatus);
107: end if;

Line 115: wip_logger.exitPoint(p_procName => 'wma_material.process',

111: fnd_message.set_token ('FUNCTION', 'wma_material.process');
112: fnd_message.set_token ('ERROR', SQLERRM);
113: errMessage := fnd_message.get;
114: if (l_logLevel <= wip_constants.trace_logging) then
115: wip_logger.exitPoint(p_procName => 'wma_material.process',
116: p_procReturnStatus => status,
117: p_msg => errMessage,
118: x_returnStatus => l_returnStatus);
119: end if;

Line 415: wip_logger.log('put: error from validateInterfaceTxns', l_retStatus);

411: x_returnStatus => l_retStatus);
412:
413: if(l_retStatus <> fnd_api.g_ret_sts_success) then
414: if (l_logLevel <= wip_constants.full_logging) then
415: wip_logger.log('put: error from validateInterfaceTxns', l_retStatus);
416: end if;
417: wip_utilities.get_message_stack(p_msg => errMsg);
418: return false;
419: end if;