atov_status_schema_not_yet_mig

DDL: ATOV_STATUS_SCHEMA_NOT_YET_MIG Type: view_entity

Collection versions not yet migrated

atov_status_schema_not_yet_mig is a CDS View that provides data about "Collection versions not yet migrated" in SAP S/4HANA. It reads from 2 data sources (ato_col_versions, ato_col_v_status) and exposes 1 field.

Data Sources (2)

SourceAliasJoin Type
ato_col_versions col_versions from
ato_col_v_status schema left_outer

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Collection versions not yet migrated view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (1)

KeyFieldSource TableSource FieldDescription
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_status_schema_not_yet_mig.
-- 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_status_schema_not_yet_mig AS
SELECT
  col_versions.version AS version
FROM ato_col_versions AS col_versions
LEFT OUTER JOIN ato_col_v_status AS schema ON /* join condition not captured in parsed metadata */
;