C_ProdnSupplyAreaProdnVersCnt

DDL: C_PRODNSUPPLYAREAPRODNVERSCNT Type: view_entity CONSUMPTION Package: ODATA_PP_KAB_FIO_MANAGE_PSA

Count of Production Versions use PSA

C_ProdnSupplyAreaProdnVersCnt is a Consumption CDS View that provides data about "Count of Production Versions use PSA" in SAP S/4HANA. It reads from 2 data sources (I_ProductionSupplyArea, I_ProductionVersion) and exposes 2 fields with key fields Plant, ProductionSupplyArea. It is exposed through 2 OData services (ASQL_F6935, UI_PRODSUPPLYAREA_MANAGE). Part of development package ODATA_PP_KAB_FIO_MANAGE_PSA.

Data Sources (2)

SourceAliasJoin Type
I_ProductionSupplyArea _ProductionSupplyArea from
I_ProductionVersion _ProductionVersion left_outer

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Count of Production Versions 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

OData Services (2)

ServiceBindingVersionContractRelease
ASQL_F6935 ASQL_F6935 C2 NOT_RELEASED
UI_PRODSUPPLYAREA_MANAGE UI_PRODSUPPLYAREA_MANAGE V4 C1 NOT_RELEASED

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_ProdnSupplyAreaProdnVersCnt.
-- 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_ProdnSupplyAreaProdnVersCnt AS
SELECT
  _ProductionSupplyArea.Plant AS Plant,
  _ProductionSupplyArea.ProductionSupplyArea AS ProductionSupplyArea
FROM I_ProductionSupplyArea AS _ProductionSupplyArea
LEFT OUTER JOIN I_ProductionVersion AS _ProductionVersion ON /* join condition not captured in parsed metadata */
;