I_ChmlCompTypeText
Language-Depenedent Description of Type of Chem. Component
I_ChmlCompTypeText is a Basic CDS View that provides data about "Language-Depenedent Description of Type of Chem. Component" in SAP S/4HANA. It reads from 1 data source (ehfndc_comptypet) and exposes 3 fields. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ehfndc_comptypet | ChemComponentTypeText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Language-Depenedent Description of Type of Chem. Component | view | |
| AbapCatalog.sqlViewName | ICCOMPTYPET | view | |
| AbapCatalog.compiler.compareFilter | 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.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | ChmlCompType | view | |
| Search.searchable | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| languasLanguage | ||||
| type_descriptionasChmlCompTypeName | ||||
| _Language | _Language |
@EndUserText.label: 'Language-Depenedent Description of Type of Chem. Component'
@AbapCatalog:
{
sqlViewName: 'ICCOMPTYPET',
compiler.compareFilter: true
}
// no authorization check required because view only reads customizing for which a check is not needed
@AccessControl.authorizationCheck: #NOT_REQUIRED
--Client Handling of the view
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel:
{
--Performance Annotations
usageType:
{
dataClass: #CUSTOMIZING,
sizeCategory: #S,
serviceQuality: #B
},
--Data category
dataCategory: #TEXT,
--Representative Key
representativeKey: 'ChmlCompType'
}
--Search
@Search.searchable: true
define view I_ChmlCompTypeText
--Select data from customizing table 'Language-dependent Description for Component Type'
as select from ehfndc_comptypet as ChemComponentTypeText
--Link to CDS view I_Language
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
--Type of Chemical Component
key cast(ChemComponentTypeText.type as ehfnd_cci_ccomp_type_nce preserving type ) as ChmlCompType,
--Language
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key ChemComponentTypeText.langu as Language,
--Description of Type
@Semantics.text: true
@Search:
{
defaultSearchElement: true,
fuzzinessThreshold: 0.8,
ranking: #HIGH
}
ChemComponentTypeText.type_description as ChmlCompTypeName,
/* Associations */
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"EHFNDC_COMPTYPET"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"VERSION":0
}
}*/
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