PPH_DDL_MDQM_EWM_1

DDL: PPH_DDL_MDQM_EWM_1 SQL: V_PPH_MDQM_EWM_1 Type: view

PPH_DDL_MDQM_EWM_1 is a CDS View in SAP S/4HANA. It reads from 2 data sources (jest, qals) and exposes 5 fields.

Data Sources (2)

SourceAliasJoin Type
jest jest_ewm left_outer
qals qals from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName V_PPH_MDQM_EWM_1 view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #AUTOMATED view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (5)

KeyFieldSource TableSource FieldDescription
matnr matnr Vehicle Model
werks werkvorg Plant for Stock
mng01 lmengezub Postings
charg charg Chargeable Proc.
sobkz sobkz Special Stock

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 PPH_DDL_MDQM_EWM_1.
-- 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: V_PPH_MDQM_EWM_1

CREATE VIEW PPH_DDL_MDQM_EWM_1 AS
SELECT
  matnr,
  werkvorg AS werks,
  lmengezub AS mng01,
  charg,
  sobkz
FROM qals
LEFT OUTER JOIN jest AS jest_ewm ON /* join condition not captured in parsed metadata */
;