P_KZ_VATRetOutDoc

DDL: P_KZ_VATRETOUTDOC SQL: PKZVATRETOUTDOC Type: view COMPOSITE

P_KZ_VATRetOutDoc is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (P_KZ_BillingMaterialDetails, I_OperationalAcctgDocItem).

Data Sources (2)

SourceAliasJoin Type
P_KZ_BillingMaterialDetails BillingMaterial left_outer
I_OperationalAcctgDocItem DocumentItem left_outer

Annotations (6)

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

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_KZ_VATRetOutDoc.
-- 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: PKZVATRETOUTDOC

CREATE VIEW P_KZ_VATRetOutDoc AS
SELECT *  -- field list not available in parsed metadata
LEFT OUTER JOIN I_OperationalAcctgDocItem AS DocumentItem ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN P_KZ_BillingMaterialDetails AS BillingMaterial ON /* join condition not captured in parsed metadata */
;