I_DefectClassText
Defect Class - Text
I_DefectClassText is a Basic CDS View that provides data about "Defect Class - Text" in SAP S/4HANA. It reads from 1 data source (tq17t) and exposes 5 fields with key fields DefectClass, Language. It has 2 associations to related views. Part of development package VDM_QM_INSPECTION.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tq17t | tq17t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [0..1] | I_DefectClass | _DefectClass | $projection.DefectClass = _DefectClass.DefectClass |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Defect Class - Text | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.representativeKey | DefectClass | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| Analytics.technicalName | IDEFECTCLASST | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Search.searchable | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DefectClass | fehlklasse | ||
| KEY | Language | sprache | ||
| DefectClassText | kurztext | |||
| _DefectClass | _DefectClass | |||
| _Language | _Language |
@EndUserText.label: 'Defect Class - Text'
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.supportedCapabilities:
[ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #LANGUAGE_DEPENDENT_TEXT ]
@ObjectModel: {
usageType: { dataClass: #CUSTOMIZING, sizeCategory: #M, serviceQuality: #A },
representativeKey: 'DefectClass',
dataCategory: #TEXT
}
@Analytics.technicalName: 'IDEFECTCLASST'
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
define view entity I_DefectClassText as select from tq17t
association [0..1] to I_Language as _Language
on $projection.Language = _Language.Language
association [0..1] to I_DefectClass as _DefectClass
on $projection.DefectClass = _DefectClass.DefectClass
{
key fehlklasse as DefectClass,
@Semantics.language: true
key sprache as Language,
@Semantics.text: true
@Search: {
defaultSearchElement: true,
fuzzinessThreshold: 0.8,
ranking: #HIGH
}
kurztext as DefectClassText,
/* Associations */
_DefectClass,
_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