DBA Data[Home] [Help]

APPS.INVIDIT2 dependencies on CST_ITEM_COSTS

Line 8: -- call CSTPIICI to insert into cst_item_costs

4: -- After inserting an item:
5: -- insert into mtl_pending_item_status
6: -- insert into mtl_item_revisions
7: -- insert into mtl_item_categories
8: -- call CSTPIICI to insert into cst_item_costs
9: -- insert into mtl_uom_conversions
10: -- Call other procedures passing event='INSERT'
11:
12: -- After updating an item:

Line 23: -- call CSTPIICI to insert into cst_item_costs

19: -- delete from mtl_item_categories
20: -- insert into mtl_item_categories
21: -- insert into mtl_pending_item_status
22: -- insert into mtl_item_revisions
23: -- call CSTPIICI to insert into cst_item_costs
24: -- Call other procedures passing event = 'ORG_ASSIGN'
25:
26: -- After updating item/org attributes:
27: -- insert into mtl_pending_item_status

Line 1635: from cst_item_costs

1631: begin
1632:
1633: select lot_size, shrinkage_rate
1634: into cst_lot_size, cst_shrink_rate
1635: from cst_item_costs
1636: where inventory_item_id = X_item_id
1637: and organization_id = X_org_id
1638: and cost_type_id = cost_method; --Bug#7149985 : Changed from cost_type_id = 1;
1639: