P_QltyTaskActionFllwUpParam
Projection of Qlty. Task Follow-Up Action Param.
P_QltyTaskActionFllwUpParam is a Basic CDS View that provides data about "Projection of Qlty. Task Follow-Up Action Param." in SAP S/4HANA. It reads from 1 data source (qmsm_foa_param) and exposes 4 fields with key fields QualityTaskInternalId, ItemCounter. Part of development package VDM_QM_NOTIFICATION.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| qmsm_foa_param | qmsm_foa_param | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #BASIC | view | |
| VDM.private | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.representativeKey | ItemCounter | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | QualityTaskInternalId | qmsm_foa_param | qmnum | |
| KEY | ItemCounter | qmsm_foa_param | counter | |
| QltyTskFllwUpActnParamType | qmsm_foa_param | paramtype | ||
| DefectAffectedObject | qmsm_foa_param | affctd_obj_counter |
@VDM: {
viewType: #BASIC,
private: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
usageType: {
dataClass: #TRANSACTIONAL,
sizeCategory: #M,
serviceQuality: #A },
representativeKey: 'ItemCounter'
}
define view entity P_QltyTaskActionFllwUpParam
as select from qmsm_foa_param
{
@ObjectModel.readOnly: true
key qmsm_foa_param.qmnum as QualityTaskInternalId,
@ObjectModel.readOnly: true
key qmsm_foa_param.counter as ItemCounter,
@ObjectModel.readOnly: true
qmsm_foa_param.paramtype as QltyTskFllwUpActnParamType,
@ObjectModel.readOnly: true
qmsm_foa_param.affctd_obj_counter as DefectAffectedObject
}
where
qmsm_foa_param.affctd_obj_counter is not initial
and qmsm_foa_param.qmnum like '$%'
and qmsm_foa_param.manum = '0000'
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