DBA Data[Home] [Help]

APPS.INV_PICK_RELEASE_PUB dependencies on INV_QUANTITY_TREE_PVT

Line 1226: inv_quantity_tree_pvt.create_tree

1222: -- Because of the quantity tree rearchitechture, we
1223: -- can pass dummy values for demand source info.
1224: -- Bug 1890424 - Pass sysdate to create_tree so
1225: -- expired lots don't appear as available
1226: inv_quantity_tree_pvt.create_tree
1227: (
1228: p_api_version_number => 1.0
1229: ,p_init_msg_lst => fnd_api.g_false
1230: ,x_return_status => l_api_return_status

Line 1236: inv_quantity_tree_pvt.g_transaction_mode

1232: ,x_msg_data => x_msg_data
1233: ,p_organization_id => l_organization_id
1234: ,p_inventory_item_id => l_item_index
1235: ,p_tree_mode =>
1236: inv_quantity_tree_pvt.g_transaction_mode
1237: ,p_is_revision_control => l_revision_controlled
1238: ,p_is_lot_control => l_lot_controlled
1239: ,p_is_serial_control => FALSE
1240: ,p_asset_sub_only => FALSE

Line 1249: ,p_exclusive => inv_quantity_tree_pvt.g_exclusive

1245: ,p_demand_source_delivery => NULL
1246: ,p_demand_source_name => NULL
1247: ,p_lot_expiration_date => sysdate
1248: ,x_tree_id => l_tree_id
1249: ,p_exclusive => inv_quantity_tree_pvt.g_exclusive
1250: ,p_pick_release => inv_quantity_tree_pvt.g_pick_release_yes
1251: );
1252:
1253: If is_debug then

Line 1250: ,p_pick_release => inv_quantity_tree_pvt.g_pick_release_yes

1246: ,p_demand_source_name => NULL
1247: ,p_lot_expiration_date => sysdate
1248: ,x_tree_id => l_tree_id
1249: ,p_exclusive => inv_quantity_tree_pvt.g_exclusive
1250: ,p_pick_release => inv_quantity_tree_pvt.g_pick_release_yes
1251: );
1252:
1253: If is_debug then
1254: print_debug('Tree id from Normal Create tree'||l_tree_id,

Line 1323: inv_quantity_tree_pvt.create_tree

1319: 'Inv_Pick_Release_PVT.Process_Line');
1320: End If;
1321: END;
1322:
1323: inv_quantity_tree_pvt.create_tree
1324: (
1325: p_api_version_number => 1.0
1326: ,p_init_msg_lst => fnd_api.g_false
1327: ,x_return_status => l_api_return_status

Line 1332: ,p_tree_mode => inv_quantity_tree_pvt.g_reservation_mode

1328: ,x_msg_count => x_msg_count
1329: ,x_msg_data => x_msg_data
1330: ,p_organization_id => l_organization_id
1331: ,p_inventory_item_id => l_item_index
1332: ,p_tree_mode => inv_quantity_tree_pvt.g_reservation_mode
1333: ,p_is_revision_control => l_revision_controlled
1334: ,p_is_lot_control => l_lot_controlled
1335: ,p_is_serial_control => FALSE
1336: ,p_asset_sub_only => FALSE

Line 1345: ,p_exclusive => inv_quantity_tree_pvt.g_exclusive

1341: ,p_demand_source_delivery => NULL
1342: ,p_demand_source_name => NULL
1343: ,p_lot_expiration_date => sysdate
1344: ,x_tree_id => l_tree_id
1345: ,p_exclusive => inv_quantity_tree_pvt.g_exclusive
1346: ,p_pick_release => inv_quantity_tree_pvt.g_pick_release_yes
1347: );
1348: If is_debug then
1349: print_debug('Tree id from PJM Create tree'||l_tree_id,

Line 1346: ,p_pick_release => inv_quantity_tree_pvt.g_pick_release_yes

1342: ,p_demand_source_name => NULL
1343: ,p_lot_expiration_date => sysdate
1344: ,x_tree_id => l_tree_id
1345: ,p_exclusive => inv_quantity_tree_pvt.g_exclusive
1346: ,p_pick_release => inv_quantity_tree_pvt.g_pick_release_yes
1347: );
1348: If is_debug then
1349: print_debug('Tree id from PJM Create tree'||l_tree_id,
1350: 'Inv_Pick_Release_PVT.Process_Line');

Line 1695: inv_quantity_tree_pvt.backup_tree(

1691: 'Inv_Pick_Release_Pub.Pick_Release');
1692: End If;
1693: --Bug 2814919
1694: if l_tree_id is not null then
1695: inv_quantity_tree_pvt.backup_tree(
1696: x_return_status => l_api_return_status
1697: ,p_tree_id => l_tree_id
1698: ,x_backup_id => l_backup_id
1699: );

Line 1904: inv_quantity_tree_pvt.restore_tree

1900: print_debug('Restoring Quantity Tree: ' || l_tree_id,
1901: 'Inv_Pick_Release_Pub.Pick_Release');
1902: End If;
1903:
1904: inv_quantity_tree_pvt.restore_tree
1905: (x_return_status => l_api_return_status
1906: ,p_tree_id => l_tree_id
1907: ,p_backup_id => l_qtree_backup_tbl(l_tree_id)
1908: );

Line 2185: inv_quantity_tree_pvt.restore_tree

2181: If is_debug then
2182: print_debug('Restoring Quantity Tree: ' || l_tree_id,
2183: 'Inv_Pick_Release_Pub.Pick_Release');
2184: End If;
2185: inv_quantity_tree_pvt.restore_tree
2186: (x_return_status => l_api_return_status
2187: ,p_tree_id => l_tree_id
2188: ,p_backup_id => l_qtree_backup_tbl(l_tree_id)
2189: );