DBA Data[Home] [Help]

APPS.WIP_AUTOLOTPROC_PRIV dependencies on INV_QUANTITY_TREE_PVT

Line 169: inv_quantity_tree_pvt.free_tree(p_api_version_number => 1.0,

165: and l_prevItem <> l_curItem.inventory_item_id) then
166: --if destroy trees is true, free the tree. otherwise, we just
167: --need to reset the l_treeID variable
168: if(fnd_api.to_boolean(p_destroyTrees)) then
169: inv_quantity_tree_pvt.free_tree(p_api_version_number => 1.0,
170: p_init_msg_lst => fnd_api.g_false,
171: p_tree_id => l_treeID,
172: x_return_status => l_returnStatus,
173: x_msg_count => l_msgCount,

Line 204: inv_quantity_tree_pvt.free_tree(p_api_version_number => 1.0,

200:
201: --destroy the last tree if the user has not requested it persist
202: if(l_treeID is not null and
203: fnd_api.to_boolean(p_destroyTrees)) then
204: inv_quantity_tree_pvt.free_tree(p_api_version_number => 1.0,
205: p_init_msg_lst => fnd_api.g_false,
206: p_tree_id => l_treeID,
207: x_return_status => l_returnStatus,
208: x_msg_count => l_msgCount,

Line 454: p_treeMode => inv_quantity_tree_pvt.g_reservation_mode,

450: p_wipEntityID => p_wipEntityID,
451: p_initMsgList => fnd_api.g_false,
452: p_endDebug => fnd_api.g_false,
453: p_destroyTrees => fnd_api.g_true,
454: p_treeMode => inv_quantity_tree_pvt.g_reservation_mode,
455: p_treeSrcName => null,
456: x_returnStatus => l_lotReturnStatus);
457:
458: x_returnStatus := worstReturnStatus(l_serialReturnStatus, l_lotReturnStatus);

Line 922: p_treeMode => inv_quantity_tree_pvt.g_reservation_mode,

918: p_wipEntityID => p_wipEntityID,
919: p_initMsgList => fnd_api.g_false,
920: p_endDebug => fnd_api.g_false,
921: p_destroyTrees => fnd_api.g_true,
922: p_treeMode => inv_quantity_tree_pvt.g_reservation_mode,
923: p_treeSrcName => null,
924: x_returnStatus => l_lotReturnStatus);
925:
926: x_returnStatus := worstReturnStatus(l_serialReturnStatus, l_lotReturnStatus);

Line 1465: inv_quantity_tree_pvt.create_tree(p_api_version_number => 1.0,

1461: when others then
1462: l_demand_source_header_id := 0;
1463: end;
1464:
1465: inv_quantity_tree_pvt.create_tree(p_api_version_number => 1.0,
1466: p_init_msg_lst => fnd_api.g_false,
1467: p_organization_id => p_orgID,
1468: p_inventory_item_id => l_item.inventory_item_id,
1469: p_tree_mode => p_treeMode,

Line 1572: inv_quantity_tree_pvt.query_tree(p_api_version_number => 1.0,

1568: if(l_enabled <> 'Y') then
1569: goto END_OF_LOOP;
1570: end if;
1571:
1572: inv_quantity_tree_pvt.query_tree(p_api_version_number => 1.0,
1573: p_init_msg_lst => fnd_api.g_false,
1574: p_tree_id => x_treeID,
1575: p_revision => l_item.revision,
1576: p_lot_number => l_lotNumber,

Line 1633: inv_quantity_tree_pvt.update_quantities(p_api_version_number => 1.0,

1629: p_priQty => least(l_rmnQty, l_qtyAvailToTxt),
1630: p_attributes => null);
1631:
1632:
1633: inv_quantity_tree_pvt.update_quantities(p_api_version_number => 1.0,
1634: p_init_msg_lst => fnd_api.g_false,
1635: p_tree_id => x_treeID,
1636: p_revision => l_item.revision,
1637: p_lot_number => l_lotNumber,

Line 1644: p_containerized => inv_quantity_tree_pvt.g_containerized_false,

1640: p_primary_quantity => -1 * least(l_rmnQty, l_qtyAvailToTxt),
1641: p_quantity_type => 1, --pending txn
1642: p_transfer_subinventory_code => null,
1643: p_cost_group_id => null,
1644: p_containerized => inv_quantity_tree_pvt.g_containerized_false,
1645: p_lpn_id => null,
1646: p_transfer_locator_id => null,
1647: x_return_status => x_returnStatus,
1648: x_msg_count => l_msgCount,