DBA Data[Home] [Help]

APPS.WIP_TRANSACTION_PVT dependencies on CST_EAMCOST_PUB

Line 72: CST_eamCost_PUB.check_if_direct_item (

68: p_return_status := FND_API.G_RET_STS_SUCCESS;
69: l_OSP_rec := p_OSP_rec;
70: l_process_phase := '2';
71: -- Check for direct items
72: CST_eamCost_PUB.check_if_direct_item (
73: p_api_version => 1.0,
74: p_validation_level => p_validation_level,
75: p_interface_txn_id => l_OSP_rec.rcv_transaction_id,
76: x_direct_item_flag => l_direct_item_flag,

Line 87: CST_eamCost_PUB.process_direct_item_txn (

83: end if;
84:
85: if (l_direct_item_flag = 1) then
86: l_process_phase := '3';
87: CST_eamCost_PUB.process_direct_item_txn (
88: p_api_version => 1.0,
89: p_validation_level => p_validation_level,
90: p_directItem_rec => l_osp_rec,
91: x_directItem_rec => l_osp_rec,

Line 109: /*Call CST_eamCost_PUB.Get_Encumbrance_Data only for EAM Work Order and receiving_

105:
106: /* Fix bug 9356683, for costing encumbrance project*/
107: l_receiving_transaction_id := l_OSP_rec.rcv_transaction_id;
108: l_entity_type := l_OSP_rec.entity_type;
109: /*Call CST_eamCost_PUB.Get_Encumbrance_Data only for EAM Work Order and receiving_
110: transaction_id not null*/
111: if (l_entity_type = wip_constants.eam and l_receiving_transaction_id is not null) then
112: if (l_logLevel <= wip_constants.full_logging) then
113: wip_logger.log(p_msg => 'Calling CST_eamCost_PUB.Get_Encumbrance_Data',

Line 113: wip_logger.log(p_msg => 'Calling CST_eamCost_PUB.Get_Encumbrance_Data',

109: /*Call CST_eamCost_PUB.Get_Encumbrance_Data only for EAM Work Order and receiving_
110: transaction_id not null*/
111: if (l_entity_type = wip_constants.eam and l_receiving_transaction_id is not null) then
112: if (l_logLevel <= wip_constants.full_logging) then
113: wip_logger.log(p_msg => 'Calling CST_eamCost_PUB.Get_Encumbrance_Data',
114: x_returnStatus => l_return_status);
115: end if;
116:
117: CST_eamCost_PUB.Get_Encumbrance_Data(

Line 117: CST_eamCost_PUB.Get_Encumbrance_Data(

113: wip_logger.log(p_msg => 'Calling CST_eamCost_PUB.Get_Encumbrance_Data',
114: x_returnStatus => l_return_status);
115: end if;
116:
117: CST_eamCost_PUB.Get_Encumbrance_Data(
118: p_receiving_transaction_id => l_receiving_transaction_id
119: ,x_encumbrance_amount => l_encumbrance_amount
120: ,x_encumbrance_quantity => l_encumbrance_quantity
121: ,x_encumbrance_ccid => l_encumbrance_ccid

Line 128: wip_logger.log(p_msg => 'CST_eamCost_PUB.Get_Encumbrance_Data returns '

124: ,x_msg_count => p_msg_count
125: ,x_msg_data => p_msg_data);
126:
127: if (l_logLevel <= wip_constants.full_logging) then
128: wip_logger.log(p_msg => 'CST_eamCost_PUB.Get_Encumbrance_Data returns '
129: || p_return_status,
130: x_returnStatus => l_return_status);
131: end if;
132: