P_DD_MAT_ADDLINFO

DDL: P_DD_MAT_ADDLINFO Type: view_entity BASIC Package: PPH_AMDP_READ

Demand Driven Material information

P_DD_MAT_ADDLINFO is a Basic CDS View that provides data about "Demand Driven Material information" in SAP S/4HANA. It reads from 5 data sources (pph_dd_bf_asg, pph_dbvm, mara, marc, mdlv) and exposes 3 fields with key fields matnr, werks, berid. Part of development package PPH_AMDP_READ.

Data Sources (5)

SourceAliasJoin Type
pph_dd_bf_asg _asg inner
pph_dbvm _dbvm from
mara _mara inner
marc _marc inner
mdlv _mdlv inner

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Demand Driven Material information view
VDM.private true view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY matnr pph_dbvm matnr Vehicle Model
KEY werks pph_dbvm werks Receiving Plant
KEY berid pph_dbvm berid Single-Character Flag

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_DD_MAT_ADDLINFO.
-- 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 P_DD_MAT_ADDLINFO AS
SELECT
  _dbvm.matnr AS matnr,
  _dbvm.werks AS werks,
  _dbvm.berid AS berid
FROM pph_dbvm AS _dbvm
INNER JOIN marc AS _marc ON /* join condition not captured in parsed metadata */
INNER JOIN mdlv AS _mdlv ON /* join condition not captured in parsed metadata */
INNER JOIN pph_dd_bf_asg AS _asg ON /* join condition not captured in parsed metadata */
INNER JOIN mara AS _mara ON /* join condition not captured in parsed metadata */
;