DBA Data[Home] [Help]

APPS.CSP_EXCESS_PARTS_PVT dependencies on CST_ITEM_COSTS

Line 864: from CST_ITEM_COSTS cic,

860: br_rec business_rule%rowtype;
861:
862: cursor excess_value is
863: select sum(cel.excess_quantity * NVL(ITEM_COST,0))
864: from CST_ITEM_COSTS cic,
865: CST_COST_TYPES cct,
866: csp_excess_lists cel
867: where cic.ORGANIZATION_ID = cel.organization_id
868: and cic.inventory_item_id = cel.inventory_item_id

Line 875: from CST_ITEM_COSTS cic,

871: and cel.excess_status = 'P';
872:
873: cursor org_max_value is
874: select sum(msib.max_minmax_quantity * NVL(ITEM_COST,0))
875: from CST_ITEM_COSTS cic,
876: CST_COST_TYPES cct,
877: mtl_system_items_b msib
878: where msib.organization_id = p_organization_id
879: and cic.ORGANIZATION_ID = msib.organization_id

Line 887: from cst_item_costs cic,

883: and msib.max_minmax_quantity > 0;
884:
885: cursor sub_max_value is
886: select sum(misi.max_minmax_quantity * nvl(cic.item_cost,0))
887: from cst_item_costs cic,
888: cst_cost_types cct,
889: mtl_item_sub_inventories misi
890: where misi.organization_id = p_organization_id
891: and misi.secondary_inventory = p_subinventory_code

Line 950: from CST_ITEM_COSTS cic,

946:
947: cursor excess_line_value is
948: select cel.excess_line_id,
949: cel.excess_quantity * NVL(ITEM_COST,0) value
950: from CST_ITEM_COSTS cic,
951: CST_COST_TYPES cct,
952: csp_excess_lists cel
953: where cel.organization_id = p_organization_id
954: and cic.ORGANIZATION_ID = cel.organization_id