I_DD_RUT_RC_RELEASED_OBJECTS

DDL: I_DD_RUT_RC_RELEASED_OBJECTS Type: view_entity

ABAP Dictionary: CDS View Released Obj

I_DD_RUT_RC_RELEASED_OBJECTS is a CDS View that provides data about "ABAP Dictionary: CDS View Released Obj" in SAP S/4HANA. It reads from 2 data sources (ARS_API_STATE, tadir) and exposes 3 fields with key fields object_name, object_type. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
ARS_API_STATE _ReleaseStateC0 left_outer
tadir object from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_DD_RUT_RC_OBJECT_SUB_TYPE _ObjectSubType _ObjectSubType.object_name = $projection.object_name

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label ABAP Dictionary: CDS View Released Obj view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY object_name tadir obj_name Object Name
KEY object_type tadir object TRFM Object
C_Contract ARS_API_STATE compatibility_contract Release Contract

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 I_DD_RUT_RC_RELEASED_OBJECTS.
-- 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 I_DD_RUT_RC_RELEASED_OBJECTS AS
SELECT
  object.obj_name AS object_name,
  object.object AS object_type,
  _ReleaseStateC0.compatibility_contract AS C_Contract
FROM tadir AS object
LEFT OUTER JOIN ARS_API_STATE AS _ReleaseStateC0 ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_DD_RUT_RC_OBJECT_SUB_TYPE AS _ObjectSubType ON _ObjectSubType.object_name = object_name  -- association [0..1]
;