ATOV_TABU_ENTRY_TABLES

DDL: ATOV_TABU_ENTRY_TABLES SQL: ATOV_TABU_TAB Type: view

ATO: Table Metadata of Table Entries

ATOV_TABU_ENTRY_TABLES is a CDS View that provides data about "ATO: Table Metadata of Table Entries" in SAP S/4HANA. It reads from 2 data sources (ATOV_SOFTWARE_COMP_OF_OBJECT, dd02l) and exposes 1 field with key field table_name.

Data Sources (2)

SourceAliasJoin Type
ATOV_SOFTWARE_COMP_OF_OBJECT custom_dev left_outer
dd02l table from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName ATOV_TABU_TAB view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label ATO: Table Metadata of Table Entries view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY table_name tabname Table/Constant Value

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_TABU_ENTRY_TABLES.
-- 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: ATOV_TABU_TAB

CREATE VIEW ATOV_TABU_ENTRY_TABLES AS
SELECT
  tabname AS table_name
FROM dd02l AS table
LEFT OUTER JOIN ATOV_SOFTWARE_COMP_OF_OBJECT AS custom_dev ON /* join condition not captured in parsed metadata */
;