P_MRPMasterDataIssueCntMsgType

DDL: P_MRPMASTERDATAISSUECNTMSGTYPE SQL: PMRPMDISSUECNTMT Type: view COMPOSITE

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

Data Sources (1)

SourceAliasJoin Type
I_MRPMasterDataIssueBasic I_MRPMasterDataIssueBasic from

Annotations (10)

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

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Material Material Vehicle Model
KEY Plant Plant Valuation Area
KEY MRPArea MRPArea MRP Area
KEY SystemMessageType SystemMessageType Message type
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_MRPMasterDataIssueCntMsgType.
-- 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: PMRPMDISSUECNTMT

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