I_DefectCauseCodeGroupText
Defect Cause Code Group Text
I_DefectCauseCodeGroupText is a Basic CDS View that provides data about "Defect Cause Code Group Text" in SAP S/4HANA. It reads from 1 data source (qpgt) and exposes 4 fields with key fields DefectCauseCodeGroup, Language. It has 1 association to related views. Part of development package VDM_QM_NOTIFICATION.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| qpgt | qpgt | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_DefectCauseCodeGroup | _DefectCauseCodeGroup | $projection.DefectCauseCodeGroup = _DefectCauseCodeGroup.DefectCauseCodeGroup |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Defect Cause Code Group Text | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ObjectModel.representativeKey | DefectCauseCodeGroup | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| Analytics.technicalName | IDEFCACODEGRPT | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DefectCauseCodeGroup | |||
| KEY | Language | qpgt | sprache | |
| DefectCauseCodeGroupText | ||||
| _DefectCauseCodeGroup | _DefectCauseCodeGroup |
@EndUserText.label: 'Defect Cause Code Group Text'
@AccessControl.authorizationCheck: #CHECK
@VDM: {
viewType:#BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@ObjectModel: {
representativeKey: 'DefectCauseCodeGroup',
usageType: { serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING },
dataCategory: #TEXT
}
@Analytics.technicalName: 'IDEFCACODEGRPT'
@Metadata.ignorePropagatedAnnotations: true
define view entity I_DefectCauseCodeGroupText as select from qpgt
association [1..1] to I_DefectCauseCodeGroup as _DefectCauseCodeGroup on $projection.DefectCauseCodeGroup = _DefectCauseCodeGroup.DefectCauseCodeGroup
{
key cast( qpgt.codegruppe as vdm_qfecausegrp preserving type ) as DefectCauseCodeGroup,
@Semantics.language: true
key qpgt.sprache as Language,
@Semantics.text: true
cast( qpgt.kurztext as vdm_qfecausegrp_text preserving type ) as DefectCauseCodeGroupText,
// Association
_DefectCauseCodeGroup
} where katalogart = '5' // Causes
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