DBA Data[Home] [Help]

APPS.CST_INVENTORY_PVT dependencies on CST_ITEM_COSTS

Line 133: cst_item_costs CIC

129: MIC.category_id,
130: CIC.cost_type_id
131: FROM mtl_item_categories MIC,
132: mtl_system_items_kfv MSI,
133: cst_item_costs CIC
134: -- cst_item_costs CIC1,
135: -- cst_item_costs CIC2
136: WHERE MIC.category_set_id = p_category_set_id
137: AND MIC.organization_id = p_organization_id

Line 134: -- cst_item_costs CIC1,

130: CIC.cost_type_id
131: FROM mtl_item_categories MIC,
132: mtl_system_items_kfv MSI,
133: cst_item_costs CIC
134: -- cst_item_costs CIC1,
135: -- cst_item_costs CIC2
136: WHERE MIC.category_set_id = p_category_set_id
137: AND MIC.organization_id = p_organization_id
138: AND MSI.organization_id = p_organization_id

Line 135: -- cst_item_costs CIC2

131: FROM mtl_item_categories MIC,
132: mtl_system_items_kfv MSI,
133: cst_item_costs CIC
134: -- cst_item_costs CIC1,
135: -- cst_item_costs CIC2
136: WHERE MIC.category_set_id = p_category_set_id
137: AND MIC.organization_id = p_organization_id
138: AND MSI.organization_id = p_organization_id
139: AND MSI.inventory_item_id = MIC.inventory_item_id

Line 175: cst_item_costs CIC,

171: MIC.category_id,
172: CIC.cost_type_id
173: FROM mtl_item_categories MIC,
174: mtl_system_items_kfv MSI,
175: cst_item_costs CIC,
176: cst_item_costs CIC1,
177: cst_item_costs CIC2
178: WHERE MIC.category_set_id = p_category_set_id
179: AND MIC.organization_id = p_organization_id

Line 176: cst_item_costs CIC1,

172: CIC.cost_type_id
173: FROM mtl_item_categories MIC,
174: mtl_system_items_kfv MSI,
175: cst_item_costs CIC,
176: cst_item_costs CIC1,
177: cst_item_costs CIC2
178: WHERE MIC.category_set_id = p_category_set_id
179: AND MIC.organization_id = p_organization_id
180: AND MSI.organization_id = p_organization_id

Line 177: cst_item_costs CIC2

173: FROM mtl_item_categories MIC,
174: mtl_system_items_kfv MSI,
175: cst_item_costs CIC,
176: cst_item_costs CIC1,
177: cst_item_costs CIC2
178: WHERE MIC.category_set_id = p_category_set_id
179: AND MIC.organization_id = p_organization_id
180: AND MSI.organization_id = p_organization_id
181: AND MSI.inventory_item_id = MIC.inventory_item_id

Line 225: cst_item_costs CIC

221: CIC.cost_type_id
222: FROM mtl_item_categories MIC,
223: mtl_categories_kfv MC,
224: mtl_system_items_kfv MSI,
225: cst_item_costs CIC
226: -- cst_item_costs CIC1,
227: -- cst_item_costs CIC2
228: WHERE MC.concatenated_segments
229: BETWEEN NVL(p_category_from,MC.concatenated_segments)

Line 226: -- cst_item_costs CIC1,

222: FROM mtl_item_categories MIC,
223: mtl_categories_kfv MC,
224: mtl_system_items_kfv MSI,
225: cst_item_costs CIC
226: -- cst_item_costs CIC1,
227: -- cst_item_costs CIC2
228: WHERE MC.concatenated_segments
229: BETWEEN NVL(p_category_from,MC.concatenated_segments)
230: AND NVL(p_category_to,MC.concatenated_segments)

Line 227: -- cst_item_costs CIC2

223: mtl_categories_kfv MC,
224: mtl_system_items_kfv MSI,
225: cst_item_costs CIC
226: -- cst_item_costs CIC1,
227: -- cst_item_costs CIC2
228: WHERE MC.concatenated_segments
229: BETWEEN NVL(p_category_from,MC.concatenated_segments)
230: AND NVL(p_category_to,MC.concatenated_segments)
231: AND MC.structure_id = (SELECT structure_id FROM mtl_category_sets WHERE category_set_id = p_category_set_id)

Line 276: cst_item_costs CIC,

272: CIC.cost_type_id
273: FROM mtl_item_categories MIC,
274: mtl_categories_kfv MC,
275: mtl_system_items_kfv MSI,
276: cst_item_costs CIC,
277: cst_item_costs CIC1,
278: cst_item_costs CIC2
279: WHERE MC.concatenated_segments
280: BETWEEN NVL(p_category_from,MC.concatenated_segments)

Line 277: cst_item_costs CIC1,

273: FROM mtl_item_categories MIC,
274: mtl_categories_kfv MC,
275: mtl_system_items_kfv MSI,
276: cst_item_costs CIC,
277: cst_item_costs CIC1,
278: cst_item_costs CIC2
279: WHERE MC.concatenated_segments
280: BETWEEN NVL(p_category_from,MC.concatenated_segments)
281: AND NVL(p_category_to,MC.concatenated_segments)

Line 278: cst_item_costs CIC2

274: mtl_categories_kfv MC,
275: mtl_system_items_kfv MSI,
276: cst_item_costs CIC,
277: cst_item_costs CIC1,
278: cst_item_costs CIC2
279: WHERE MC.concatenated_segments
280: BETWEEN NVL(p_category_from,MC.concatenated_segments)
281: AND NVL(p_category_to,MC.concatenated_segments)
282: AND MC.structure_id = (SELECT structure_id FROM mtl_category_sets WHERE category_set_id = p_category_set_id)

Line 3622: cst_item_costs CIC

3618: NVL(CIC.resource_cost,0),
3619: NVL(CIC.outside_processing_cost,0),
3620: NVL(CIC.overhead_cost,0)
3621: FROM mtl_parameters MP,
3622: cst_item_costs CIC
3623: WHERE MP.organization_id = l_organization_id
3624: AND CIC.organization_id = MP.cost_organization_id
3625: AND CIC.inventory_item_id = l_inventory_item_id
3626: AND CIC.cost_type_id = l_cost_type_id;

Line 3713: cst_item_costs CIC,

3709: FROM cst_inv_qty_temp
3710: WHERE qty_source NOT IN (1,2,9,10)
3711: ) CIQT,
3712: cst_quantity_layers CQL,
3713: cst_item_costs CIC,
3714: mtl_parameters MP
3715: WHERE CIC.organization_id = CIQT.organization_id
3716: AND CIC.inventory_item_id = CIQT.inventory_item_id
3717: AND CIC.cost_type_id = CIQT.cost_type_id

Line 3809: cst_item_costs CIC

3805: NVL(CIC.resource_cost,0),
3806: NVL(CIC.outside_processing_cost,0),
3807: NVL(CIC.overhead_cost,0)
3808: FROM mtl_parameters MP,
3809: cst_item_costs CIC
3810: WHERE MP.organization_id = l_organization_id
3811: AND CIC.organization_id = MP.cost_organization_id
3812: AND CIC.inventory_item_id = l_inventory_item_id
3813: AND CIC.cost_type_id = l_cost_type_id;

Line 3840: cst_item_costs CIC

3836: --{BUG#7484428
3837: SELECT nvl(CIC.inventory_asset_flag,2)
3838: INTO l_exp_item_flag
3839: FROM mtl_parameters MP,
3840: cst_item_costs CIC
3841: WHERE MP.organization_id = l_organization_id
3842: AND CIC.organization_id = MP.cost_organization_id
3843: AND CIC.inventory_item_id = l_inventory_item_id
3844: AND CIC.cost_type_id = 1;

Line 3909: FROM cst_item_costs CIC,

3905: SUM(NVL(CIC.material_overhead_cost,0)),
3906: SUM(NVL(CIC.resource_cost,0)),
3907: SUM(NVL(CIC.outside_processing_cost,0)),
3908: SUM(NVL(CIC.overhead_cost,0))
3909: FROM cst_item_costs CIC,
3910: mtl_parameters MP
3911: WHERE CIC.cost_type_id = 1
3912: AND MP.organization_id = l_organization_id
3913: AND CIC.organization_id = MP.cost_organization_id

Line 4106: cst_item_costs CIC

4102: NVL(CIC.resource_cost,0),
4103: NVL(CIC.outside_processing_cost,0),
4104: NVL(CIC.overhead_cost,0)
4105: FROM mtl_parameters MP,
4106: cst_item_costs CIC
4107: WHERE MP.organization_id = l_organization_id
4108: AND CIC.organization_id = MP.cost_organization_id
4109: AND CIC.inventory_item_id = l_inventory_item_id
4110: AND CIC.cost_type_id = 1;

Line 4184: cst_item_costs CIC

4180: 0,
4181: 0
4182: FROM cst_inv_qty_temp CIQT,
4183: mtl_parameters MP,
4184: cst_item_costs CIC
4185: WHERE MP.organization_id = CIQT.organization_id
4186: AND MP.primary_cost_method <> 1
4187: AND CIC.organization_id = CIQT.organization_id
4188: AND CIC.inventory_item_id = CIQT.inventory_item_id