C_ProdnSupplyAreaWrkCtrCount

DDL: C_PRODNSUPPLYAREAWRKCTRCOUNT Type: view_entity CONSUMPTION

Count of Work Centers use PSA

C_ProdnSupplyAreaWrkCtrCount is a Consumption CDS View that provides data about "Count of Work Centers use PSA" in SAP S/4HANA. It reads from 2 data sources (I_ProductionSupplyArea, I_WorkCenter) and exposes 2 fields with key fields Plant, ProductionSupplyArea.

Data Sources (2)

SourceAliasJoin Type
I_ProductionSupplyArea _ProductionSupplyArea from
I_WorkCenter _WorkCenter left_outer

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Count of Work Centers use PSA view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Plant I_ProductionSupplyArea Plant Valuation Area
KEY ProductionSupplyArea I_ProductionSupplyArea ProductionSupplyArea Supply Area

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view C_ProdnSupplyAreaWrkCtrCount.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW C_ProdnSupplyAreaWrkCtrCount AS
SELECT
  _ProductionSupplyArea.Plant AS Plant,
  _ProductionSupplyArea.ProductionSupplyArea AS ProductionSupplyArea
FROM I_ProductionSupplyArea AS _ProductionSupplyArea
LEFT OUTER JOIN I_WorkCenter AS _WorkCenter ON /* join condition not captured in parsed metadata */
;