ars_v_c3_relev_tables_base

DDL: ARS_V_C3_RELEV_TABLES_BASE Type: view_entity

API Release: C3 Relev, Tables from BASIS

ars_v_c3_relev_tables_base is a CDS View that provides data about "API Release: C3 Relev, Tables from BASIS" in SAP S/4HANA. It reads from 4 data sources (dd02l, ars_v_tabs_in_log_trans, tadir, tdevc) and exposes 3 fields with key fields object_type, object_name.

Data Sources (4)

SourceAliasJoin Type
dd02l dd02l from
ars_v_tabs_in_log_trans logtab inner
tadir tadir inner
tdevc tdevc inner

Annotations (2)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label API Release: C3 Relev, Tables from BASIS view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY object_type
KEY object_name dd02l tabname Table/Constant Value
is_extension

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 ars_v_c3_relev_tables_base.
-- 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.

CREATE VIEW ars_v_c3_relev_tables_base AS
SELECT
  'TABL' AS object_type,
  dd02l.tabname AS object_name,
  ' ' AS is_extension
FROM dd02l
INNER JOIN ars_v_tabs_in_log_trans AS logtab ON /* join condition not captured in parsed metadata */
INNER JOIN tadir ON /* join condition not captured in parsed metadata */
INNER JOIN tdevc ON /* join condition not captured in parsed metadata */
;