P_MfgQualificationGroupList
Display list of Qualification Group and Catalog
P_MfgQualificationGroupList is a Basic CDS View that provides data about "Display list of Qualification Group and Catalog" in SAP S/4HANA. It reads from 3 data sources (hrp1000, hrp1001, t77s0) and exposes 3 fields with key field MfgHumanResourceQualification. Part of development package MPE_QUALIFICATIONS.
Data Sources (3)
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PMFGQUALGRPLIST | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| VDM.private | true | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
@AbapCatalog.sqlViewName: 'PMFGQUALGRPLIST'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@VDM.private: true
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ClientHandling.algorithm: #SESSION_VARIABLE
define view P_MfgQualificationGroupList
as select from hrp1001 as QualificationGroupList
inner join t77s0 as SystemTable on SystemTable.grpid = 'PLOGI'
and SystemTable.semid = 'PLOGI'
and SystemTable.gsval = QualificationGroupList.plvar
inner join hrp1000 as GroupDetail on GroupDetail.plvar = QualificationGroupList.plvar
and GroupDetail.otype = QualificationGroupList.otype
and GroupDetail.objid = QualificationGroupList.objid
and GroupDetail.langu = $session.system_language
{
key QualificationGroupList.objid as MfgHumanResourceQualification,
sum(case when QualificationGroupList.rsign = 'A' then 1 else 0 end) as MfgHumRsceQualificationIsGroup,
GroupDetail.stext as MfgHumRsceQualificationGrpDesc
}
where
QualificationGroupList.otype = 'QK'
and QualificationGroupList.relat = '030'
group by
QualificationGroupList.objid,
GroupDetail.stext
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