I_QualityControlChartType
Type of Quality Control Chart
I_QualityControlChartType is a Basic CDS View that provides data about "Type of Quality Control Chart" in SAP S/4HANA. It reads from 1 data source (qpsh) and exposes 3 fields with key field QualityControlChartType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| qpsh | qpsh | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_QualityControlChartTypeText | _Text | $projection.QualityControlChartType = _Text.QualityControlChartType |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IQLTYCTRLCHRTTP | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Type of Quality Control Chart | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | 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 (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | QualityControlChartType | qrkart | ||
| ControlChartAxisType | xgroup | |||
| _Text | _Text |
@AbapCatalog: {
sqlViewName: 'IQLTYCTRLCHRTTP',
preserveKey: true,
compiler.compareFilter: true
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Type of Quality Control Chart'
@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 ]
@ObjectModel.representativeKey: 'QualityControlChartType'
@ObjectModel.usageType: { dataClass: #CUSTOMIZING, sizeCategory: #M, serviceQuality: #A }
@Search.searchable: true
@Metadata.ignorePropagatedAnnotations: true
define view I_QualityControlChartType
as select from qpsh
association [0..*] to I_QualityControlChartTypeText as _Text on $projection.QualityControlChartType = _Text.QualityControlChartType
{
@ObjectModel.text.association: '_Text'
@Search: { defaultSearchElement: true, ranking: #HIGH }
key qrkart as QualityControlChartType,
xgroup as ControlChartAxisType,
//Associations
_Text
}
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