P_CnsldtnExtnVersAcctgInteg

DDL: P_CNSLDTNEXTNVERSACCTGINTEG SQL: PCSEXTVSTAI Type: view COMPOSITE

P_CnsldtnExtnVersAcctgInteg is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_CnsldtnVersion) and exposes 1 field with key field ConsolidationVersion. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnVersion _CnsldtnVersion from

Associations (1)

CardinalityTargetAliasCondition
[0..1] P_CnsldtnExtnVersRestatement _CnsldtnExtnVersRestatement _CnsldtnVersion.ConsolidationVersion = _CnsldtnExtnVersRestatement.ConsolidationVersion

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PCSEXTVSTAI view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #COMPOSITE view
VDM.private true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationVersion I_CnsldtnVersion ConsolidationVersion Version

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_CnsldtnExtnVersAcctgInteg.
-- 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: PCSEXTVSTAI

CREATE VIEW P_CnsldtnExtnVersAcctgInteg AS
SELECT
  _CnsldtnVersion.ConsolidationVersion AS ConsolidationVersion
FROM I_CnsldtnVersion AS _CnsldtnVersion
LEFT OUTER JOIN P_CnsldtnExtnVersRestatement AS _CnsldtnExtnVersRestatement ON _CnsldtnVersion.ConsolidationVersion = _CnsldtnExtnVersRestatement.ConsolidationVersion  -- association [0..1]
;