DBA Data[Home] [Help]

APPS.CSP_EXCESS_PARTS_PVT dependencies on CST_COST_TYPES

Line 865: CST_COST_TYPES cct,

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
869: and cic.COST_TYPE_ID = cct.COST_TYPE_ID

Line 876: CST_COST_TYPES cct,

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
880: and cic.inventory_item_id = msib.inventory_item_id

Line 888: cst_cost_types cct,

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
892: and cic.organization_id = misi.organization_id

Line 951: CST_COST_TYPES cct,

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
955: and cic.inventory_item_id = cel.inventory_item_id