I_QualityControlChartTypeText
Type of Quality Control Chart - Text
I_QualityControlChartTypeText is a Basic CDS View that provides data about "Type of Quality Control Chart - Text" in SAP S/4HANA. It reads from 1 data source (qpsht) and exposes 5 fields with key fields Language, QualityControlChartType. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| qpsht | qpsht | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_QualityControlChartType | _QualityControlChartType | $projection.QualityControlChartType = _QualityControlChartType.QualityControlChartType |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IQLTYCTRLCHRTTPT | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Type of Quality Control Chart - Text | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | QualityControlChartType | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| Search.searchable | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | sprache | ||
| KEY | QualityControlChartType | qrkart | ||
| QualityControlChartTypeText | ||||
| _QualityControlChartType | _QualityControlChartType | |||
| _Language | _Language |
@AbapCatalog: {
sqlViewName: 'IQLTYCTRLCHRTTPT',
preserveKey: true,
compiler.compareFilter: true
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Type of Quality Control Chart - 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.dataCategory: #TEXT
@ObjectModel.representativeKey: 'QualityControlChartType'
@ObjectModel.usageType: { dataClass: #CUSTOMIZING, sizeCategory: #M, serviceQuality: #A }
@Search.searchable: true
@Metadata.ignorePropagatedAnnotations: true
define view I_QualityControlChartTypeText
as select from qpsht
association [0..1] to I_QualityControlChartType as _QualityControlChartType on $projection.QualityControlChartType = _QualityControlChartType.QualityControlChartType
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics.language: true
key sprache as Language,
@Search: { defaultSearchElement: true, ranking: #HIGH }
key qrkart as QualityControlChartType,
@Semantics.text: true
@Search: { defaultSearchElement: true, ranking: #MEDIUM, fuzzinessThreshold: 0.8 }
cast(qrktxt as vdm_qrkart_text preserving type ) as QualityControlChartTypeText,
//Associations
_QualityControlChartType,
_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