I_CmplRqApplCompText
CmplRq Application Component Text
I_CmplRqApplCompText is a Basic CDS View that provides data about "CmplRq Application Component Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, CmplRqApplicationComponent. It has 2 associations to related views. Part of development package EHFND_BO_COMPLIANCE_REQ.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_CmplRqVers | _CmplRqVers | $projection.CmplRqApplicationComponent = _CmplRqVers.CmplRqApplicationComponent |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICRVAPPCOMPT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | CmplRq Application Component Text | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.representativeKey | CmplRqApplicationComponent | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | |||
| KEY | CmplRqApplicationComponent | |||
| CmplRqApplicationComponentName | ||||
| _CmplRqVers | _CmplRqVers | |||
| _Language | _Language | |||
| _CmplRqApplComp | _CmplRqApplComp |
@AbapCatalog.sqlViewName: 'ICRVAPPCOMPT'
@AbapCatalog.compiler.compareFilter: true
// Authorization not required, CRV is customizing-like data and shall be generally available without restriction
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'CmplRq Application Component Text'
@VDM.viewType: #BASIC
@ObjectModel:
{
dataCategory: #TEXT,
usageType:
{
dataClass: #MASTER,
sizeCategory: #S,
serviceQuality: #B
},
representativeKey: 'CmplRqApplicationComponent'
}
// Client handling by session
@ClientHandling.algorithm: #SESSION_VARIABLE
/*----------------------------------------------------------------------------------------------------------------------
Returns all language dependent Compliance Requirement Application Components (ENV, HSS, PMA, ...)
------------------------------------------------------------------------------------------------------------------------*/
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view I_CmplRqApplCompText
as select from dd07t
association to parent I_CmplRqApplComp as _CmplRqApplComp on $projection.CmplRqApplicationComponent = _CmplRqApplComp.CmplRqApplicationComponent
association [0..*] to I_CmplRqVers as _CmplRqVers on $projection.CmplRqApplicationComponent = _CmplRqVers.CmplRqApplicationComponent
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics.language: true
key cast (dd07t.ddlanguage as spras preserving type ) as Language,
key cast ( domvalue_l as ehfnd_solution_area ) as CmplRqApplicationComponent,
@Semantics.text: true
cast ( ddtext as ehfnd_crv_appl_comp_name preserving type ) as CmplRqApplicationComponentName,
/* Associations */
_CmplRqVers,
_Language,
_CmplRqApplComp
}
where
domname = 'EHFND_EHSM_COMPONENT'
and 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