I_ChmlCmplncApplication
Application
I_ChmlCmplncApplication is a Basic CDS View that provides data about "Application" in SAP S/4HANA. It reads from 1 data source (ehfndc_applic) and exposes 2 fields with key field ChmlCmplncApplication. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ehfndc_applic | ehfndc_applic | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_ApplicationText | _Text | $projection.ChmlCmplncApplication = _Text.ChmlCmplncApplication |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Application | view | |
| AbapCatalog.sqlViewName | ICCAPPL | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.representativeKey | ChmlCmplncApplication | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ChmlCmplncApplication | |||
| _Text | _Text |
--Label of view
@EndUserText.label: 'Application'
@AbapCatalog:
{
-- SQL view name (16 characters)
sqlViewName: 'ICCAPPL',
--If it's true, the filter conditions are compared and, if they match, the associated join expression is evaluated only once
compiler.compareFilter: true,
preserveKey: true
}
--Access Control: Authorizations Checks
@AccessControl:
{
// no authorization check required because view only reads customizing for which a check is not needed
authorizationCheck: #NOT_REQUIRED
}
--Client Handling of the view
@ClientHandling.algorithm: #SESSION_VARIABLE
--VDM view type
@VDM.viewType: #BASIC
@ObjectModel:
{
--Performance Annotations
usageType:
{
dataClass: #CUSTOMIZING,
sizeCategory: #S,
serviceQuality: #B
},
representativeKey: 'ChmlCmplncApplication'
}
define view I_ChmlCmplncApplication
--Select data from customizing table 'Application'
as select from ehfndc_applic
--Text association
association [0..*] to I_ApplicationText as _Text on $projection.ChmlCmplncApplication = _Text.ChmlCmplncApplication
{
@ObjectModel.text.association: '_Text'
key cast( application as ehfnd_cci_application_nce preserving type ) as ChmlCmplncApplication,
/*Association*/
_Text
}
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