P_ApplicationComponent
Application Component
P_ApplicationComponent is a Basic 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_ESH_MSM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| df14l | df14l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..*] | P_ApplicationComponentText | _Text | $projection.ApplicationComponent = _Text.ApplicationComponent |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PAPPLCOMP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.type | #CLIENT_INDEPENDENT | view | |
| ClientHandling.algorithm | #NONE | view | |
| VDM.private | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #P | view |
@AbapCatalog.sqlViewName: 'PAPPLCOMP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
//@EndUserText.label: 'Application Component'
@ClientHandling.type: #CLIENT_INDEPENDENT
@ClientHandling.algorithm: #NONE
@VDM.private: true
@VDM.viewType: #BASIC
@ObjectModel.usageType.serviceQuality: #P
define view P_ApplicationComponent
as select from df14l
association [1..*] to P_ApplicationComponentText as _Text on $projection.ApplicationComponent = _Text.ApplicationComponent
{
key df14l.fctr_id as ApplicationComponent,
df14l.ps_posid as ApplicationComponentName,
_Text[ 1: Language = $session.system_language ].ApplicationComponentText as ApplicationComponentText
}
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