ATOV_CURRENT_COLLECTION_OF_ITM

DDL: ATOV_CURRENT_COLLECTION_OF_ITM SQL: ATO_V_CURRCOLITM Type: view

Current Collection of Item

ATOV_CURRENT_COLLECTION_OF_ITM is a CDS View that provides data about "Current Collection of Item" in SAP S/4HANA. It reads from 2 data sources (ato_cols, ato_col_items) and exposes 2 fields with key fields item_type, item_id.

Data Sources (2)

SourceAliasJoin Type
ato_cols collection inner
ato_col_items item from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName ATO_V_CURRCOLITM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Current Collection of Item view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY item_type ato_col_items item_type Type
KEY item_id ato_col_items item_id Simulation Item ID

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_CURRENT_COLLECTION_OF_ITM.
-- 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_CURRCOLITM

CREATE VIEW ATOV_CURRENT_COLLECTION_OF_ITM AS
SELECT
  item.item_type AS item_type,
  item.item_id AS item_id
FROM ato_col_items AS item
INNER JOIN ato_cols AS collection ON /* join condition not captured in parsed metadata */
;