Application_Component
Application Component
Application_Component is a CDS View that provides data about "Application Component" in SAP S/4HANA. It reads from 1 data source (df14l) and exposes 3 fields with key field ApplicationComponent. It has 1 association to related views. Part of development package S_DICT_VB.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| df14l | df14l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | Application_Component_Text | _Text | $projection.ApplicationComponent = _Text.ApplicationComponent |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | APPLCOMP | view | |
| EndUserText.label | Application Component | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view |
@AbapCatalog.sqlViewName: 'APPLCOMP'
@EndUserText.label: 'Application Component'
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #M
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
define view Application_Component as select from df14l
association [0..*] to Application_Component_Text as _Text on $projection.ApplicationComponent = _Text.ApplicationComponent {
key df14l.fctr_id as ApplicationComponent,
df14l.ps_posid as ApplicationComponentName,
_Text
} where df14l.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