Atov_Latest_Imported_Item_Key

DDL: ATOV_LATEST_IMPORTED_ITEMS_KEY SQL: ATO_V_L_IM_I_K Type: view

Latest Imported Items for ATO Inventory

Atov_Latest_Imported_Item_Key is a CDS View that provides data about "Latest Imported Items for ATO Inventory" in SAP S/4HANA. It reads from 2 data sources (ATOV_LATEST_IMP_ITEM_CL, ato_col_versions) and exposes 2 fields with key fields item_type, item_id.

Data Sources (2)

SourceAliasJoin Type
ATOV_LATEST_IMP_ITEM_CL Changelist_Item_Key from
ato_col_versions Collection_Version inner

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName ATO_V_L_IM_I_K view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Latest Imported Items for ATO Inventory view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY item_type ATOV_LATEST_IMP_ITEM_CL item_type Type
KEY item_id ATOV_LATEST_IMP_ITEM_CL 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_Latest_Imported_Item_Key.
-- 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_L_IM_I_K

CREATE VIEW Atov_Latest_Imported_Item_Key AS
SELECT
  Changelist_Item_Key.item_type AS item_type,
  Changelist_Item_Key.item_id AS item_id
FROM ATOV_LATEST_IMP_ITEM_CL AS Changelist_Item_Key
INNER JOIN ato_col_versions AS Collection_Version ON /* join condition not captured in parsed metadata */
;