I_SpecRatingText
Specification Rating Text
I_SpecRatingText is a Basic CDS View that provides data about "Specification Rating Text" in SAP S/4HANA. It reads from 1 data source (tcg87) and exposes 5 fields with key fields SpecificationRating, Language. It has 2 associations to related views. Part of development package VDM_PLMB_SPC_BAS.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tcg87 | tcg87 | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_SpecRating | _SpecificationRating | $projection.SpecificationRating = _SpecificationRating.SpecificationRating |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISPECRATINGTEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.representativeKey | SpecificationRating | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Specification Rating Text | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SpecificationRating | vaclid | ||
| KEY | Language | langu | ||
| SpecificationRatingDesc | vaclnam | |||
| _SpecificationRating | _SpecificationRating | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'ISPECRATINGTEXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.representativeKey: 'SpecificationRating'
@ObjectModel.semanticKey: [ 'SpecificationRating' ]
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Specification Rating Text'
define view I_SpecRatingText
as select from tcg87
association [0..1] to I_SpecRating as _SpecificationRating on $projection.SpecificationRating = _SpecificationRating.SpecificationRating
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_SpecificationRating'
key vaclid as SpecificationRating,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key langu as Language,
@Semantics.text: true
vaclnam as SpecificationRatingDesc,
/* Associations */
_SpecificationRating,
_Language
}
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