ars_v_implicit_c3_tables

DDL: ARS_V_IMPLICIT_C3_TABLES Type: view_entity

API Release: Tables implicitly stable for C3

ars_v_implicit_c3_tables is a CDS View that provides data about "API Release: Tables implicitly stable for C3" in SAP S/4HANA. It reads from 2 data sources (dd02l, ars_u_tabs_in_logtrans) and exposes 2 fields with key fields object_type, object_name.

Data Sources (2)

SourceAliasJoin Type
dd02l dd02l from
ars_u_tabs_in_logtrans logtab inner

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label API Release: Tables implicitly stable for C3 view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY object_type
KEY object_name dd02l 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 ars_v_implicit_c3_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.

CREATE VIEW ars_v_implicit_c3_tables AS
SELECT
  'TABL' AS object_type,
  dd02l.tabname AS object_name
FROM dd02l
INNER JOIN ars_u_tabs_in_logtrans AS logtab ON /* join condition not captured in parsed metadata */
;