ATOV_CL_ITEM_BOM_EXP

DDL: ATOV_CL_ITEM_BOM_EXP SQL: ATO_V_CL_IBE Type: view

Basis view for changelist objects

ATOV_CL_ITEM_BOM_EXP is a CDS View that provides data about "Basis view for changelist objects" in SAP S/4HANA. It reads from 3 data sources (ATOV_Cl_FINAL, atov_cl_item_base, ato_changel_bom) and exposes 9 fields.

Data Sources (3)

SourceAliasJoin Type
ATOV_Cl_FINAL Changelist from
atov_cl_item_base ChangeListItem inner
ato_changel_bom ChangeListItemBOM inner

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName ATO_V_CL_IBE view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Basis view for changelist objects view

Fields (9)

KeyFieldSource TableSource FieldDescription
item_type atov_cl_item_base item_type Type
item_id atov_cl_item_base item_id Simulation Item ID
bom_pgmid ato_changel_bom bom_pgmid Program ID
bom_object ato_changel_bom bom_object Object Type
exported_at ATOV_Cl_FINAL exported_at Time Stamp
created_by ATOV_Cl_FINAL created_by Version Created By
created_at ATOV_Cl_FINAL created_at Uploaded On
transport ATOV_Cl_FINAL transport Transportable
status ATOV_Cl_FINAL status Workflow Status

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_CL_ITEM_BOM_EXP.
-- 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_CL_IBE

CREATE VIEW ATOV_CL_ITEM_BOM_EXP AS
SELECT
  ChangeListItem.item_type AS item_type,
  ChangeListItem.item_id AS item_id,
  ChangeListItemBOM.bom_pgmid AS bom_pgmid,
  ChangeListItemBOM.bom_object AS bom_object,
  Changelist.exported_at AS exported_at,
  Changelist.created_by AS created_by,
  Changelist.created_at AS created_at,
  Changelist.transport AS transport,
  Changelist.status AS status
FROM ATOV_Cl_FINAL AS Changelist
INNER JOIN atov_cl_item_base AS ChangeListItem ON /* join condition not captured in parsed metadata */
INNER JOIN ato_changel_bom AS ChangeListItemBOM ON /* join condition not captured in parsed metadata */
;