atov_predecessor_same_release

DDL: ATOV_PREDECESSOR_SAME_RELEASE Type: view_entity

Predecessor of collection versions

atov_predecessor_same_release is a CDS View that provides data about "Predecessor of collection versions" in SAP S/4HANA. It reads from 2 data sources (ato_col_versions, ato_col_versions) and exposes 1 field with key field version.

Data Sources (2)

SourceAliasJoin Type
ato_col_versions predecessor inner
ato_col_versions version from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label Predecessor of collection versions view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #META view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY version ato_col_versions version XML Vers.

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 atov_predecessor_same_release.
-- 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.

CREATE VIEW atov_predecessor_same_release AS
SELECT
  version.version AS version
FROM ato_col_versions AS version
INNER JOIN ato_col_versions AS predecessor ON /* join condition not captured in parsed metadata */
;