Atov_Col_Item_ContiDep_Join

DDL: ATOV_COL_ITEM_CONTIDEP_JOIN SQL: ATO_V_COL_CONTID Type: view

Join Continous Dep and Collection Items

Atov_Col_Item_ContiDep_Join is a CDS View that provides data about "Join Continous Dep and Collection Items" in SAP S/4HANA. It reads from 4 data sources (ato_adapt_types, Atov_Contidep_Item_Key, ato_items, ATOV_CONTI_DEP_SAP_KEY) and exposes 6 fields with key fields item_type, item_id.

Data Sources (4)

SourceAliasJoin Type
ato_adapt_types Adapt_Type inner
Atov_Contidep_Item_Key Conti left_outer
ato_items Item from
ATOV_CONTI_DEP_SAP_KEY Released_References left_outer

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName ATO_V_COL_CONTID view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Join Continous Dep and Collection Items view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY item_type ato_items item_type Type
KEY item_id ato_items item_id Simulation Item ID
item_status ato_items item_status Transfer Status
changed_at ato_items last_notification Time Stamp
Dep_updated_at
SAP_Ref_updated_at

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_Item_ContiDep_Join.
-- 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_CONTID

CREATE VIEW Atov_Col_Item_ContiDep_Join AS
SELECT
  Item.item_type AS item_type,
  Item.item_id AS item_id,
  Item.item_status AS item_status,
  Item.last_notification AS changed_at,
  COALESCE(Conti.last_updated_at, 0) AS Dep_updated_at,
  COALESCE(Released_References.updated_at , 0) AS SAP_Ref_updated_at
FROM ato_items AS Item
LEFT OUTER JOIN Atov_Contidep_Item_Key AS Conti ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN ATOV_CONTI_DEP_SAP_KEY AS Released_References ON /* join condition not captured in parsed metadata */
INNER JOIN ato_adapt_types AS Adapt_Type ON /* join condition not captured in parsed metadata */
;