I_ABAPApplCompText
ABAP Application Component Text
I_ABAPApplCompText is a Basic CDS View that provides data about "ABAP Application Component Text" in SAP S/4HANA. It reads from 1 data source (df14t) and exposes 5 fields with key fields Language, ABAPApplicationComponent. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| df14t | df14t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | ABAP Application Component Text | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | ABAPApplicationComponent | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | langu | ||
| KEY | ABAPApplicationComponent | fctr_id | ||
| ABAPApplicationComponentName | name | |||
| _ABAPApplicationComponent | _ABAPApplicationComponent | |||
| _Language | _Language |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'ABAP Application Component Text'
@VDM.viewType: #BASIC
@ObjectModel.dataCategory:#TEXT
@ObjectModel.representativeKey: 'ABAPApplicationComponent'
define view entity I_ABAPApplCompText
as select from df14t
association to parent I_ABAPApplicationComponent as _ABAPApplicationComponent on $projection.ABAPApplicationComponent = _ABAPApplicationComponent.ABAPApplicationComponent
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key langu as Language,
@ObjectModel.foreignKey.association: '_ABAPApplicationComponent'
key fctr_id as ABAPApplicationComponent,
@Semantics.text: true
name as ABAPApplicationComponentName,
// @ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT] -- no more needed
_ABAPApplicationComponent,
_Language
}
where
addon = ''
and 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