I_AppObjectKeyStructure

DDL: I_APPOBJECTKEYSTRUCTURE Type: view_entity Package: S_APPL_OBJECT

I View for App Object Key Structure

I_AppObjectKeyStructure is a CDS View that provides data about "I View for App Object Key Structure" in SAP S/4HANA. It reads from 2 data sources (dd02l, dd02t) and exposes 3 fields with key field DatabaseTable. Part of development package S_APPL_OBJECT.

Data Sources (2)

SourceAliasJoin Type
dd02l dd02l from
dd02t dd02t left_outer

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label I View for App Object Key Structure 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 DatabaseTable dd02l tabname Table / Structure Name
DatabaseTableText dd02t ddtext Table / Structure Description
AbapLanguageVersion dd02l abap_language_version Language Version

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_AppObjectKeyStructure.
-- 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_AppObjectKeyStructure AS
SELECT
  dd02l.tabname AS DatabaseTable,
  dd02t.ddtext AS DatabaseTableText,
  dd02l.abap_language_version AS AbapLanguageVersion
FROM dd02l
LEFT OUTER JOIN dd02t ON /* join condition not captured in parsed metadata */
;