I_QltyTskCodeGroupText
Quality Task Code Group Text
I_QltyTskCodeGroupText is a Basic CDS View that provides data about "Quality Task Code Group Text" in SAP S/4HANA. It reads from 1 data source (qpgt) and exposes 4 fields with key fields QualityTaskCodeGroup, 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_QltyTskCodeGroup | _QltyTskCodeGroup | $projection.QualityTaskCodeGroup = _QltyTskCodeGroup.QualityTaskCodeGroup |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ObjectModel.representativeKey | QualityTaskCodeGroup | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| Analytics.technicalName | IQTSKCODEGRPT | view | |
| EndUserText.label | Quality Task Code Group Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | QualityTaskCodeGroup | |||
| KEY | Language | qpgt | sprache | |
| QualityTaskCodeGroupText | ||||
| _QltyTskCodeGroup | _QltyTskCodeGroup |
@AccessControl.authorizationCheck: #CHECK
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@ObjectModel: {
representativeKey: 'QualityTaskCodeGroup',
usageType: { serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING },
dataCategory: #TEXT
}
@Analytics.technicalName: 'IQTSKCODEGRPT'
@EndUserText.label: 'Quality Task Code Group Text'
@Metadata.ignorePropagatedAnnotations: true
define view entity I_QltyTskCodeGroupText as select from qpgt
association [1..1] to I_QltyTskCodeGroup as _QltyTskCodeGroup on $projection.QualityTaskCodeGroup = _QltyTskCodeGroup.QualityTaskCodeGroup
{
key cast( qpgt.codegruppe as vdm_qtaskcodegrp preserving type ) as QualityTaskCodeGroup,
@Semantics.language: true
key qpgt.sprache as Language,
@Semantics.text: true
cast( qpgt.kurztext as vdm_qtaskcodegrp_text preserving type ) as QualityTaskCodeGroupText,
// Association
_QltyTskCodeGroup
} where katalogart = '2' // Tasks
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