P_MRPMasterDataIssueCount

DDL: P_MRPMASTERDATAISSUECOUNT SQL: PMRPMDISSUECNT Type: view COMPOSITE

P_MRPMasterDataIssueCount is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_MRPMasterDataIssueBasic) and exposes 4 fields with key fields Material, Plant, MRPArea.

Data Sources (1)

SourceAliasJoin Type
I_MRPMasterDataIssueBasic I_MRPMasterDataIssueBasic from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PMRPMDISSUECNT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.private true view
AbapCatalog.preserveKey true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Material Material Vehicle Model
KEY Plant Plant Valuation Area
KEY MRPArea MRPArea MRP Area
IssueCount

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 P_MRPMasterDataIssueCount.
-- 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.
-- SQL view name: PMRPMDISSUECNT

CREATE VIEW P_MRPMasterDataIssueCount AS
SELECT
  Material,
  Plant,
  MRPArea,
  count (*) AS IssueCount
FROM I_MRPMasterDataIssueBasic
;