ATOV_SAP_DEPENDENCY_BOM

DDL: ATOV_SAP_DEPENDENCY_BOM SQL: ATO_V_SAP_DEPBOM Type: view

BOM dependency on deprecated SAP object

ATOV_SAP_DEPENDENCY_BOM is a CDS View that provides data about "BOM dependency on deprecated SAP object" in SAP S/4HANA. It reads from 2 data sources (ato_conti_depbom, ato_conti_depsap) and exposes 3 fields with key fields item_type, item_id.

Data Sources (2)

SourceAliasJoin Type
ato_conti_depbom bom from
ato_conti_depsap sap_object inner

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName ATO_V_SAP_DEPBOM view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label BOM dependency on deprecated SAP object view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY item_type ato_conti_depbom item_type Type
KEY item_id ato_conti_depbom item_id Simulation Item ID
updated_at ato_conti_depbom updated_at Version Update Time

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_SAP_DEPENDENCY_BOM.
-- 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_SAP_DEPBOM

CREATE VIEW ATOV_SAP_DEPENDENCY_BOM AS
SELECT
  bom.item_type AS item_type,
  bom.item_id AS item_id,
  bom.updated_at AS updated_at
FROM ato_conti_depbom AS bom
INNER JOIN ato_conti_depsap AS sap_object ON /* join condition not captured in parsed metadata */
;