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 916: p_treeMode => inv_quantity_tree_pvt.g_reservation_mode,

912: p_wipEntityID => p_wipEntityID,
913: p_initMsgList => fnd_api.g_false,
914: p_endDebug => fnd_api.g_false,
915: p_destroyTrees => fnd_api.g_true,
916: p_treeMode => inv_quantity_tree_pvt.g_reservation_mode,
917: p_treeSrcName => null,
918: x_returnStatus => l_lotReturnStatus);
919:
920: x_returnStatus := worstReturnStatus(l_serialReturnStatus, l_lotReturnStatus);

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

1399: l_rmnQty := 0;
1400: end if;
1401:
1402: if(x_treeID is null) then
1403: inv_quantity_tree_pvt.create_tree(p_api_version_number => 1.0,
1404: p_init_msg_lst => fnd_api.g_false,
1405: p_organization_id => p_orgID,
1406: p_inventory_item_id => l_item.inventory_item_id,
1407: p_tree_mode => p_treeMode,

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

1506: if(l_enabled <> 'Y') then
1507: goto END_OF_LOOP;
1508: end if;
1509:
1510: inv_quantity_tree_pvt.query_tree(p_api_version_number => 1.0,
1511: p_init_msg_lst => fnd_api.g_false,
1512: p_tree_id => x_treeID,
1513: p_revision => l_item.revision,
1514: p_lot_number => l_lotNumber,

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

1567: p_priQty => least(l_rmnQty, l_qtyAvailToTxt),
1568: p_attributes => null);
1569:
1570:
1571: inv_quantity_tree_pvt.update_quantities(p_api_version_number => 1.0,
1572: p_init_msg_lst => fnd_api.g_false,
1573: p_tree_id => x_treeID,
1574: p_revision => l_item.revision,
1575: p_lot_number => l_lotNumber,

Line 1582: p_containerized => inv_quantity_tree_pvt.g_containerized_false,

1578: p_primary_quantity => -1 * least(l_rmnQty, l_qtyAvailToTxt),
1579: p_quantity_type => 1, --pending txn
1580: p_transfer_subinventory_code => null,
1581: p_cost_group_id => null,
1582: p_containerized => inv_quantity_tree_pvt.g_containerized_false,
1583: p_lpn_id => null,
1584: p_transfer_locator_id => null,
1585: x_return_status => x_returnStatus,
1586: x_msg_count => l_msgCount,