DBA Data[Home] [Help]

APPS.INV_QUANTITY_TREE_GRP dependencies on INV_QUANTITY_TREE_PVT

Line 23: g_reservation_mode CONSTANT INTEGER := inv_quantity_tree_pvt.g_reservation_mode;

19: --
20: -- Tree mode constants
21: -- Users can call create_tree() in two mode, reservation mode and
22: -- transaction mode
23: g_reservation_mode CONSTANT INTEGER := inv_quantity_tree_pvt.g_reservation_mode;
24: g_transaction_mode CONSTANT INTEGER := inv_quantity_tree_pvt.g_transaction_mode;
25: --
26: --
27: -- Quantity type constants

Line 24: g_transaction_mode CONSTANT INTEGER := inv_quantity_tree_pvt.g_transaction_mode;

20: -- Tree mode constants
21: -- Users can call create_tree() in two mode, reservation mode and
22: -- transaction mode
23: g_reservation_mode CONSTANT INTEGER := inv_quantity_tree_pvt.g_reservation_mode;
24: g_transaction_mode CONSTANT INTEGER := inv_quantity_tree_pvt.g_transaction_mode;
25: --
26: --
27: -- Quantity type constants
28: -- User can call update_quantities to change quantities at a given level.

Line 33: g_qoh CONSTANT INTEGER := inv_quantity_tree_pvt.g_qoh;

29: -- Quantity type constans should be used to specify which quantity the user
30: -- intents to change: quantity onhand, or quantity reserved for the (same) demand
31: -- source that was used to create the tree, and in the future, quantity suggested
32: -- when quantity suggestion is implemented.
33: g_qoh CONSTANT INTEGER := inv_quantity_tree_pvt.g_qoh;
34: -- quantity reserved by same demand source
35: g_qr_same_demand CONSTANT INTEGER := inv_quantity_tree_pvt.g_qr_same_demand;
36: -- quantity for suggested reservation
37: g_qs_rsv CONSTANT INTEGER := inv_quantity_tree_pvt.g_qs_rsv;

Line 35: g_qr_same_demand CONSTANT INTEGER := inv_quantity_tree_pvt.g_qr_same_demand;

31: -- source that was used to create the tree, and in the future, quantity suggested
32: -- when quantity suggestion is implemented.
33: g_qoh CONSTANT INTEGER := inv_quantity_tree_pvt.g_qoh;
34: -- quantity reserved by same demand source
35: g_qr_same_demand CONSTANT INTEGER := inv_quantity_tree_pvt.g_qr_same_demand;
36: -- quantity for suggested reservation
37: g_qs_rsv CONSTANT INTEGER := inv_quantity_tree_pvt.g_qs_rsv;
38: -- quantity for suggested transaction
39: g_qs_txn CONSTANT INTEGER := inv_quantity_tree_pvt.g_qs_txn;

Line 37: g_qs_rsv CONSTANT INTEGER := inv_quantity_tree_pvt.g_qs_rsv;

33: g_qoh CONSTANT INTEGER := inv_quantity_tree_pvt.g_qoh;
34: -- quantity reserved by same demand source
35: g_qr_same_demand CONSTANT INTEGER := inv_quantity_tree_pvt.g_qr_same_demand;
36: -- quantity for suggested reservation
37: g_qs_rsv CONSTANT INTEGER := inv_quantity_tree_pvt.g_qs_rsv;
38: -- quantity for suggested transaction
39: g_qs_txn CONSTANT INTEGER := inv_quantity_tree_pvt.g_qs_txn;
40:
41: -- Procedure

Line 39: g_qs_txn CONSTANT INTEGER := inv_quantity_tree_pvt.g_qs_txn;

35: g_qr_same_demand CONSTANT INTEGER := inv_quantity_tree_pvt.g_qr_same_demand;
36: -- quantity for suggested reservation
37: g_qs_rsv CONSTANT INTEGER := inv_quantity_tree_pvt.g_qs_rsv;
38: -- quantity for suggested transaction
39: g_qs_txn CONSTANT INTEGER := inv_quantity_tree_pvt.g_qs_txn;
40:
41: -- Procedure
42: -- clear_quantity_cache
43: -- Description

Line 74: , p_onhand_source IN NUMBER DEFAULT inv_quantity_tree_pvt.g_all_subs

70: , p_demand_source_header_id IN NUMBER DEFAULT -9999
71: , p_demand_source_line_id IN NUMBER DEFAULT -9999
72: , p_demand_source_name IN VARCHAR2 DEFAULT NULL
73: , p_lot_expiration_date IN DATE DEFAULT NULL
74: , p_onhand_source IN NUMBER DEFAULT inv_quantity_tree_pvt.g_all_subs
75: , x_tree_id OUT NOCOPY INTEGER
76: );
77:
78:

Line 164: , p_containerized IN NUMBER DEFAULT inv_quantity_tree_pvt.g_containerized_false

160: , x_att OUT NOCOPY NUMBER
161: , x_atr OUT NOCOPY NUMBER
162: , p_transfer_subinventory_code IN VARCHAR2 DEFAULT NULL
163: , p_cost_group_id IN NUMBER DEFAULT NULL
164: , p_containerized IN NUMBER DEFAULT inv_quantity_tree_pvt.g_containerized_false
165: , p_lpn_id IN NUMBER DEFAULT NULL
166: , p_transfer_locator_id IN NUMBER DEFAULT NULL
167: ) ;
168:

Line 198: , p_containerized IN NUMBER DEFAULT inv_quantity_tree_pvt.g_containerized_false

194: , x_satt OUT NOCOPY NUMBER -- invConv change
195: , x_satr OUT NOCOPY NUMBER -- invConv change
196: , p_transfer_subinventory_code IN VARCHAR2 DEFAULT NULL
197: , p_cost_group_id IN NUMBER DEFAULT NULL
198: , p_containerized IN NUMBER DEFAULT inv_quantity_tree_pvt.g_containerized_false
199: , p_lpn_id IN NUMBER DEFAULT NULL
200: , p_transfer_locator_id IN NUMBER DEFAULT NULL
201: ) ;
202: -- invConv changes end.