ars_u_implicit_c3_tables_views

DDL: ARS_U_IMPLICIT_C3_TABLES_VIEWS Type: view_entity

Tables and vews implicitly stable for C3

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

Data Sources (4)

SourceAliasJoin Type
dd02l dd02l from
dd02l dd02l union
ars_u_tabs_in_logtrans logtab inner
ars_v_views_in_logtrans logview inner

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Tables and vews 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 (4)

KeyFieldSource TableSource FieldDescription
KEY object_type
KEY object_name dd02l tabname Table/Constant Value
KEY tabnamekeyVIEWasobject_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_u_implicit_c3_tables_views.
-- 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_u_implicit_c3_tables_views AS
SELECT
  'TABL' AS object_type,
  dd02l.tabname AS object_name,
  dd02l.tabname as sub_object_name AS tabnamekeyVIEWasobject_type
FROM dd02l
INNER JOIN ars_u_tabs_in_logtrans AS logtab ON /* join condition not captured in parsed metadata */
INNER JOIN ars_v_views_in_logtrans AS logview ON /* join condition not captured in parsed metadata */
-- UNION with additional select branch(es): dd02l
;