I_ABAPSoftwareComponentText
ABAP Software Component Text
I_ABAPSoftwareComponentText is a Basic CDS View that provides data about "ABAP Software Component Text" in SAP S/4HANA. It reads from 1 data source (cvers_ref) and exposes 5 fields with key fields ABAPSoftwareComponent, Language. It has 1 association to related views. Part of development package SAUD.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| cvers_ref | cvers_ref | 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 Software Component Text | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | ABAPSoftwareComponent | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ABAPSoftwareComponent | component | ||
| KEY | Language | langu | ||
| ABAPSoftwareComponentName | desc_text | |||
| _ABAPSoftwareComponent | _ABAPSoftwareComponent | |||
| _Language | _Language |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'ABAP Software Component Text'
@VDM.viewType: #BASIC
@ObjectModel.dataCategory:#TEXT
@ObjectModel.representativeKey: 'ABAPSoftwareComponent'
define view entity I_ABAPSoftwareComponentText
as select from cvers_ref
association to parent I_ABAPSoftwareComponent as _ABAPSoftwareComponent on $projection.ABAPSoftwareComponent = _ABAPSoftwareComponent.ABAPSoftwareComponent
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_ABAPSoftwareComponent'
key component as ABAPSoftwareComponent,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key langu as Language,
@Semantics.text: true
desc_text as ABAPSoftwareComponentName,
// @ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT] -- no more needed
_ABAPSoftwareComponent,
_Language
}
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