I_AppObjectKeyStructure
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.
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| 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 |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'I View for App Object Key Structure'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
}
define view entity I_AppObjectKeyStructure
as select from dd02l
left outer join dd02t on dd02l.tabname = dd02t.tabname
and dd02l.as4vers = dd02t.as4vers
and dd02l.as4local = dd02t.as4local
and dd02t.ddlanguage = $session.system_language
{
@EndUserText.label: 'Table / Structure Name'
key dd02l.tabname as DatabaseTable,
@EndUserText.label: 'Table / Structure Description'
dd02t.ddtext as DatabaseTableText,
//key as4local as ABAPObjectActivationState,
//key as4vers as as4vers,
dd02l.abap_language_version as AbapLanguageVersion
}
where
dd02l.as4local = 'A'
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA