DBA Data[Home] [Help]

APPS.FLM_KANBAN_TRANSFER dependencies on INV_QUANTITY_TREE_PUB

Line 76: 'Calling INV_QUANTITY_TREE_PUB.query_quantities');

72:
73: IF FND_LOG.LEVEL_PROCEDURE >= FND_LOG.G_CURRENT_RUNTIME_LEVEL THEN
74: FND_LOG.STRING(FND_LOG.LEVEL_PROCEDURE,
75: l_log_module || '.query_quantities',
76: 'Calling INV_QUANTITY_TREE_PUB.query_quantities');
77: END IF;
78:
79: --*****************************************************************************************************
80: -- Calling the API inv_quantity_tree_pub.query_quantities to fetch the Available to Transact Quantity

Line 80: -- Calling the API inv_quantity_tree_pub.query_quantities to fetch the Available to Transact Quantity

76: 'Calling INV_QUANTITY_TREE_PUB.query_quantities');
77: END IF;
78:
79: --*****************************************************************************************************
80: -- Calling the API inv_quantity_tree_pub.query_quantities to fetch the Available to Transact Quantity
81: --*****************************************************************************************************
82: INV_QUANTITY_TREE_PUB.CLEAR_QUANTITY_CACHE;
83:
84: INV_QUANTITY_TREE_PUB.query_quantities

Line 82: INV_QUANTITY_TREE_PUB.CLEAR_QUANTITY_CACHE;

78:
79: --*****************************************************************************************************
80: -- Calling the API inv_quantity_tree_pub.query_quantities to fetch the Available to Transact Quantity
81: --*****************************************************************************************************
82: INV_QUANTITY_TREE_PUB.CLEAR_QUANTITY_CACHE;
83:
84: INV_QUANTITY_TREE_PUB.query_quantities
85: ( p_api_version_number => 1.0 ,
86: p_init_msg_lst => FND_API.g_false,

Line 84: INV_QUANTITY_TREE_PUB.query_quantities

80: -- Calling the API inv_quantity_tree_pub.query_quantities to fetch the Available to Transact Quantity
81: --*****************************************************************************************************
82: INV_QUANTITY_TREE_PUB.CLEAR_QUANTITY_CACHE;
83:
84: INV_QUANTITY_TREE_PUB.query_quantities
85: ( p_api_version_number => 1.0 ,
86: p_init_msg_lst => FND_API.g_false,
87: x_return_status => x_retcode,
88: x_msg_count => l_msg_count,

Line 92: p_tree_mode => INV_QUANTITY_TREE_PUB.g_transaction_mode,

88: x_msg_count => l_msg_count,
89: x_msg_data => x_errmsg,
90: p_organization_id => p_source_organization_id,
91: p_inventory_item_id => p_inventory_item_id,
92: p_tree_mode => INV_QUANTITY_TREE_PUB.g_transaction_mode,
93: p_is_revision_control => FALSE,
94: p_is_lot_control => FALSE,
95: p_is_serial_control => FALSE,
96: p_revision => NULL,

Line 114: 'After INV_QUANTITY_TREE_PUB.query_quantities: ' ||

110:
111: IF FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL THEN
112: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT,
113: l_log_module || '.query_quantities',
114: 'After INV_QUANTITY_TREE_PUB.query_quantities: ' ||
115: 'x_att = ' || l_att || ', ' ||
116: 'x_return_status = ' || x_retcode || ', ' ||
117: 'x_msg_count = ' || l_msg_count || ', ' ||
118: 'x_msg_data = ' || x_errmsg);