P_NetStkMTM_QrepVersion

DDL: P_NETSTKMTM_QREPVERSION SQL: PACMQREPVERSION Type: view COMPOSITE

P_NetStkMTM_QrepVersion is a Composite CDS View in SAP S/4HANA. It reads from 3 data sources (I_LoadDataCaptureEvent, I_LoadDataCaptureHdr, I_RepositoryGrade) and exposes 3 fields with key field LDCId.

Data Sources (3)

SourceAliasJoin Type
I_LoadDataCaptureEvent LDCevnt inner
I_LoadDataCaptureHdr LDChdr inner
I_RepositoryGrade Qrephdr from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName PACMQREPVERSION view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.private true view
VDM.viewType #COMPOSITE view
AbapCatalog.preserveKey true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY LDCId I_LoadDataCaptureHdr LDCId LDC ID
LoadDataCaptureEventType
QuantityRepositoryVersionVersion

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_NetStkMTM_QrepVersion.
-- 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: PACMQREPVERSION

CREATE VIEW P_NetStkMTM_QrepVersion AS
SELECT
  LDChdr.LDCId AS LDCId
FROM I_RepositoryGrade AS Qrephdr
INNER JOIN I_LoadDataCaptureEvent AS LDCevnt ON /* join condition not captured in parsed metadata */
INNER JOIN I_LoadDataCaptureHdr AS LDChdr ON /* join condition not captured in parsed metadata */
;