I_QualityTaskType
Quality Task Type
I_QualityTaskType is a Basic CDS View (Dimension) that provides data about "Quality Task Type" in SAP S/4HANA. It reads from 1 data source (tqstasktype) and exposes 3 fields with key field QualityTaskType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tqstasktype | tqstasktype | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_QualityTaskTypeText | _QualityTaskTypeText | $projection.QualityTaskType = _QualityTaskTypeText.QualityTaskType |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IQLTYTSKTYPE | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.representativeKey | QualityTaskType | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| EndUserText.label | Quality Task Type | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | QualityTaskType | tasktype | ||
| QltyTaskFollowUpActionSel | foaselection | |||
| _QualityTaskTypeText | _QualityTaskTypeText |
@AbapCatalog.sqlViewName: 'IQLTYTSKTYPE'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Analytics.dataCategory: #DIMENSION
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
usageType: {
dataClass: #CUSTOMIZING,
sizeCategory: #S,
serviceQuality: #A
},
representativeKey: 'QualityTaskType',
resultSet.sizeCategory: #XS
}
@EndUserText.label: 'Quality Task Type'
define view I_QualityTaskType as select from tqstasktype
association [0..*] to I_QualityTaskTypeText as _QualityTaskTypeText on $projection.QualityTaskType = _QualityTaskTypeText.QualityTaskType
{
@ObjectModel.text.association: '_QualityTaskTypeText'
key tasktype as QualityTaskType,
foaselection as QltyTaskFollowUpActionSel,
/* Associations */
_QualityTaskTypeText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TQSTASKTYPE"
],
"ASSOCIATED":
[
"I_QUALITYTASKTYPETEXT"
],
"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