DBA Data[Home] [Help]

APPS.INV_PICK_RELEASE_PUB dependencies on INV_QUANTITY_TREE_PVT

Line 1263: inv_quantity_tree_pvt.create_tree

1259: -- can pass dummy values for demand source info.
1260: -- Bug 1890424 - Pass sysdate to create_tree so
1261: -- expired lots don't appear as available
1262:
1263: inv_quantity_tree_pvt.create_tree
1264: (
1265: p_api_version_number => 1.0
1266: ,p_init_msg_lst => fnd_api.g_false
1267: ,x_return_status => l_api_return_status

Line 1272: ,p_tree_mode => inv_quantity_tree_pvt.g_transaction_mode

1268: ,x_msg_count => x_msg_count
1269: ,x_msg_data => x_msg_data
1270: ,p_organization_id => l_organization_id
1271: ,p_inventory_item_id => l_item_index
1272: ,p_tree_mode => inv_quantity_tree_pvt.g_transaction_mode
1273: ,p_is_revision_control => l_revision_controlled
1274: ,p_is_lot_control => l_lot_controlled
1275: ,p_is_serial_control => FALSE
1276: ,p_asset_sub_only => FALSE

Line 1285: ,p_exclusive => inv_quantity_tree_pvt.g_exclusive

1281: ,p_demand_source_delivery => NULL
1282: ,p_demand_source_name => NULL
1283: ,p_lot_expiration_date => SYSDATE
1284: ,x_tree_id => l_tree_id
1285: ,p_exclusive => inv_quantity_tree_pvt.g_exclusive
1286: ,p_pick_release => inv_quantity_tree_pvt.g_pick_release_yes
1287: );
1288:
1289: If is_debug then

Line 1286: ,p_pick_release => inv_quantity_tree_pvt.g_pick_release_yes

1282: ,p_demand_source_name => NULL
1283: ,p_lot_expiration_date => SYSDATE
1284: ,x_tree_id => l_tree_id
1285: ,p_exclusive => inv_quantity_tree_pvt.g_exclusive
1286: ,p_pick_release => inv_quantity_tree_pvt.g_pick_release_yes
1287: );
1288:
1289: If is_debug then
1290: print_debug('Tree id from Normal Create tree'||l_tree_id,'Inv_Pick_Release_PVT.Process_Line');

Line 1356: inv_quantity_tree_pvt.create_tree

1352: print_debug('No data found-Transaction types','Inv_Pick_Release_PVT.Process_Line');
1353: End If;
1354: END;
1355:
1356: inv_quantity_tree_pvt.create_tree
1357: (
1358: p_api_version_number => 1.0
1359: ,p_init_msg_lst => fnd_api.g_false
1360: ,x_return_status => l_api_return_status

Line 1365: ,p_tree_mode => inv_quantity_tree_pvt.g_reservation_mode

1361: ,x_msg_count => x_msg_count
1362: ,x_msg_data => x_msg_data
1363: ,p_organization_id => l_organization_id
1364: ,p_inventory_item_id => l_item_index
1365: ,p_tree_mode => inv_quantity_tree_pvt.g_reservation_mode
1366: ,p_is_revision_control => l_revision_controlled
1367: ,p_is_lot_control => l_lot_controlled
1368: ,p_is_serial_control => FALSE
1369: ,p_asset_sub_only => FALSE

Line 1378: ,p_exclusive => inv_quantity_tree_pvt.g_exclusive

1374: ,p_demand_source_delivery => NULL
1375: ,p_demand_source_name => NULL
1376: ,p_lot_expiration_date => SYSDATE
1377: ,x_tree_id => l_tree_id
1378: ,p_exclusive => inv_quantity_tree_pvt.g_exclusive
1379: ,p_pick_release => inv_quantity_tree_pvt.g_pick_release_yes
1380: );
1381: If is_debug then
1382: print_debug('Tree id from PJM Create tree'||l_tree_id,'Inv_Pick_Release_PVT.Process_Line');

Line 1379: ,p_pick_release => inv_quantity_tree_pvt.g_pick_release_yes

1375: ,p_demand_source_name => NULL
1376: ,p_lot_expiration_date => SYSDATE
1377: ,x_tree_id => l_tree_id
1378: ,p_exclusive => inv_quantity_tree_pvt.g_exclusive
1379: ,p_pick_release => inv_quantity_tree_pvt.g_pick_release_yes
1380: );
1381: If is_debug then
1382: print_debug('Tree id from PJM Create tree'||l_tree_id,'Inv_Pick_Release_PVT.Process_Line');
1383: End If;

Line 1738: inv_quantity_tree_pvt.backup_tree(

1734: 'Inv_Pick_Release_Pub.Pick_Release');
1735: End If;
1736: --Bug 2814919
1737: if l_tree_id is not null then
1738: inv_quantity_tree_pvt.backup_tree(
1739: x_return_status => l_api_return_status
1740: ,p_tree_id => l_tree_id
1741: ,x_backup_id => l_backup_id
1742: );

Line 1992: inv_quantity_tree_pvt.restore_tree

1988: print_debug('Restoring Quantity Tree: ' || l_tree_id,
1989: 'Inv_Pick_Release_Pub.Pick_Release');
1990: End If;
1991:
1992: inv_quantity_tree_pvt.restore_tree
1993: (x_return_status => l_api_return_status
1994: ,p_tree_id => l_tree_id
1995: ,p_backup_id => l_qtree_backup_tbl(l_tree_id)
1996: );

Line 2274: inv_quantity_tree_pvt.restore_tree

2270: If is_debug then
2271: print_debug('Restoring Quantity Tree: ' || l_tree_id,
2272: 'Inv_Pick_Release_Pub.Pick_Release');
2273: End If;
2274: inv_quantity_tree_pvt.restore_tree
2275: (x_return_status => l_api_return_status
2276: ,p_tree_id => l_tree_id
2277: ,p_backup_id => l_qtree_backup_tbl(l_tree_id)
2278: );