I_ABAPApplicationComponent
ABAP Application Component
I_ABAPApplicationComponent is a Basic CDS View that provides data about "ABAP Application Component" in SAP S/4HANA. It reads from 1 data source (df14l) and exposes 11 fields with key field ABAPApplicationComponent. It has 1 association to related views. Part of development package SDFM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| df14l | df14l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_ABAPApplCompText | _Text | |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | ABAP Application Component | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.compositionRoot | true | view | |
| ObjectModel.representativeKey | ABAPApplicationComponent | view |
Fields (11)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ABAPApplicationComponent | fctr_id | ||
| ABAPApplCompRespUser | fstuser | |||
| CreationDate | fstdate | |||
| CreationTime | fsttime | |||
| LastChangedByUser | lstuser | |||
| LastChangeDate | lstdate | |||
| LastChangeTime | lsttime | |||
| ABAPApplCompExternalID | ps_posid | |||
| ABAPApplCompIsVisible | visible | |||
| ABAPApplCompIsSelectable | selectable | |||
| _Text | _Text |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'ABAP Application Component'
@VDM.viewType: #BASIC
@ObjectModel.compositionRoot: true
@ObjectModel.representativeKey: 'ABAPApplicationComponent'
define root view entity I_ABAPApplicationComponent
as select from df14l
composition [0..*] of I_ABAPApplCompText as _Text
{
@ObjectModel.text.association: '_Text'
key fctr_id as ABAPApplicationComponent,
fstuser as ABAPApplCompRespUser,
fstdate as CreationDate,
fsttime as CreationTime,
lstuser as LastChangedByUser,
lstdate as LastChangeDate,
lsttime as LastChangeTime,
ps_posid as ABAPApplCompExternalID,
visible as ABAPApplCompIsVisible,
selectable as ABAPApplCompIsSelectable,
// @ObjectModel.association.type: [#TO_COMPOSITION_CHILD] -- no more needed
_Text
}
where
as4local = 'A' and
synch <> 'D'
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