ATOV_RELEASED_DEPENDENCIES

DDL: ATOV_RELEASED_DEPENDENCIES SQL: ATO_V_RELDEP Type: view

ATO Item Dependencies to Released Object

ATOV_RELEASED_DEPENDENCIES is a CDS View that provides data about "ATO Item Dependencies to Released Object" in SAP S/4HANA. It reads from 7 data sources and exposes 2 fields with key fields item_type, item_id.

Data Sources (7)

SourceAliasJoin Type
ATOV_U_ITEM_DESCRIPTION item_base left_outer
ATOV_REWORK_DEMAND item_rework_demand left_outer
ATOV_ADAPTATION_TYPE item_type left_outer
ato_adapt_typest item_type_description left_outer
ATOV_ALL_TEXT_ADAPT_TYPE object_type_description left_outer
ato_conti_depsap rel_dep from
ato_sap_objt sap_object inner

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName ATO_V_RELDEP view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label ATO Item Dependencies to Released Object view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY item_type ato_conti_depsap item_type Type
KEY item_id ato_conti_depsap 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_RELEASED_DEPENDENCIES.
-- 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_RELDEP

CREATE VIEW ATOV_RELEASED_DEPENDENCIES AS
SELECT
  rel_dep.item_type AS item_type,
  rel_dep.item_id AS item_id
FROM ato_conti_depsap AS rel_dep
LEFT OUTER JOIN ato_adapt_typest AS item_type_description ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN ATOV_ADAPTATION_TYPE AS item_type ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN ATOV_U_ITEM_DESCRIPTION AS item_base ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN ATOV_ALL_TEXT_ADAPT_TYPE AS object_type_description ON /* join condition not captured in parsed metadata */
INNER JOIN ato_sap_objt AS sap_object ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN ATOV_REWORK_DEMAND AS item_rework_demand ON /* join condition not captured in parsed metadata */
;