DBA Data[Home] [Help]

APPS.WIP_EAM_TRANSACTIONS_PVT dependencies on INV_TRX_UTIL_PUB

Line 99: x_errCode := inv_trx_util_pub.insert_line_trx(

95:
96: -- call inventory API to insert data to mtl_material_transactions_temp
97: -- the spec file is INVTRXUS.pls
98:
99: x_errCode := inv_trx_util_pub.insert_line_trx(
100: p_trx_hdr_id => l_transaction_header_id,
101: p_item_id => p_inventory_item_id,
102: p_revision => l_revision,
103: p_org_id => p_organization_id,

Line 136: x_errCode := inv_trx_util_pub.insert_lot_trx(

132: -- the item is under lot control
133:
134: -- call inventory API to insert data to mtl_transaction_lots_temp
135: -- the spec file is INVTRXUS.pls
136: x_errCode := inv_trx_util_pub.insert_lot_trx(
137: p_trx_tmp_id => l_transaction_temp_id,
138: p_user_id => p_user_id,
139: p_lot_number => p_lot_number,
140: p_trx_qty => p_transaction_quantity,

Line 174: x_errCode := inv_trx_util_pub.insert_ser_trx(

170: end if; -- end lot control check
171:
172: -- call inventory API to insert data to mtl_serial_numbers_temp
173: -- the spec file is INVTRXUS.pls
174: x_errCode := inv_trx_util_pub.insert_ser_trx(
175: p_trx_tmp_id => l_transaction_temp_id_s,
176: p_user_id => p_user_id,
177: p_fm_ser_num => p_serial_number,
178: p_to_ser_num => p_serial_number,