PPH_DDL_QM_IL_EWM_1

DDL: PPH_DDL_QM_IL_EWM_1 SQL: V_PPH_QM_IL_EWM1 Type: view

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

Data Sources (2)

SourceAliasJoin Type
jest jest_ewm left_outer
qals qals from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName V_PPH_QM_IL_EWM1 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 (6)

KeyFieldSource TableSource FieldDescription
matnr qals matnr Vehicle Model
werks qals werkvorg Plant for Stock
mng01 qals lmengezub Postings
lgort qals lagortvorg StLoc.ILotStock
charg qals charg Chargeable Proc.
sobkz qals 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_QM_IL_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_QM_IL_EWM1

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