atov_col_import_status

DDL: ATOV_COL_IMPORT_STATUS Type: view_entity

Import Status of a Software Collection version

atov_col_import_status is a CDS View that provides data about "Import Status of a Software Collection version" in SAP S/4HANA. It reads from 1 data source (ato_col_v_status) and exposes 5 fields with key fields CollectionId, Version.

Data Sources (1)

SourceAliasJoin Type
ato_col_v_status ato_col_v_status from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Import Status of a Software Collection version view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY CollectionId collection_id Document No.
KEY Version version XML Vers.
Status status Workflow Status
casestatuswhenIthenXelseendasIsImported
LastChangedAt last_changed_at Timestamp

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_col_import_status.
-- 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_col_import_status AS
SELECT
  collection_id AS CollectionId,
  Version,
  Status,
  case status when 'I' then 'X' else '' end as IsImported AS casestatuswhenIthenXelseendasIsImported,
  last_changed_at AS LastChangedAt
FROM ato_col_v_status
;