ATOV_CMN_COL_VERS_DEPS_SUBF

DDL: ATOV_CMN_COL_VERS_DEPS_SUBF SQL: ATO_V_COL_DSUF Type: view

Depends of collection versions at forward

ATOV_CMN_COL_VERS_DEPS_SUBF is a CDS View that provides data about "Depends of collection versions at forward" in SAP S/4HANA. It reads from 3 data sources (ATOV_COL_VER_KEY, atov_cmn_col_vers_dependencies, ATOV_VERSIONS_TO_FORWARD) and exposes 2 fields.

Data Sources (3)

SourceAliasJoin Type
ATOV_COL_VER_KEY collection_versions from
atov_cmn_col_vers_dependencies dependencies inner
ATOV_VERSIONS_TO_FORWARD import_versions inner

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName ATO_V_COL_DSUF view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label Depends of collection versions at forward view

Fields (2)

KeyFieldSource TableSource FieldDescription
version ATOV_COL_VER_KEY collection_version Collection Version
ato_client atov_cmn_col_vers_dependencies ato_client

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_CMN_COL_VERS_DEPS_SUBF.
-- 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: ATO_V_COL_DSUF

CREATE VIEW ATOV_CMN_COL_VERS_DEPS_SUBF AS
SELECT
  collection_versions.collection_version AS version,
  dependencies.ato_client AS ato_client
FROM ATOV_COL_VER_KEY AS collection_versions
INNER JOIN ATOV_VERSIONS_TO_FORWARD AS import_versions ON /* join condition not captured in parsed metadata */
INNER JOIN atov_cmn_col_vers_dependencies AS dependencies ON /* join condition not captured in parsed metadata */
;