P_MfgQualification
Display HR Qualifications data
P_MfgQualification is a Basic CDS View that provides data about "Display HR Qualifications data" in SAP S/4HANA. It reads from 2 data sources (hrp1000, t77s0) and exposes 4 fields with key field MfgHumanResourceQualification. Part of development package MPE_QUALIFICATIONS.
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PMFGQUALIFN | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| VDM.private | true | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MfgHumanResourceQualification | |||
| MfgHumRsceQualificationDesc | hrp1000 | stext | ||
| EndDate | ||||
| MfgHumanRsceQualifnGroupOrCtlg | QualificationRelation | sobid |
@AbapCatalog.sqlViewName: 'PMFGQUALIFN'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@VDM.private: true
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ClientHandling.algorithm: #SESSION_VARIABLE
define view P_MfgQualification
as select from hrp1000 as Qualification
inner join t77s0 as SystemTable on SystemTable.grpid = 'PLOGI'
and SystemTable.semid = 'PLOGI'
and SystemTable.gsval = Qualification.plvar
left outer to one join hrp1001 as QualificationRelation on QualificationRelation.objid = Qualification.objid
and QualificationRelation.plvar = Qualification.plvar
and QualificationRelation.otype = Qualification.otype
and QualificationRelation.istat = Qualification.istat
and QualificationRelation.begda = Qualification.begda
and QualificationRelation.endda = Qualification.endda
and QualificationRelation.seqnr = Qualification.seqnr
and QualificationRelation.sclas = 'QK'
left outer to one join P_MfgQualificationGroupList as GroupList on QualificationRelation.sobid = GroupList.MfgHumanResourceQualification
left outer to one join I_MfgQualificationGroup as Catalog on QualificationRelation.sobid = Catalog.MfgHumRsceQualificationGroup
{
key cast(Qualification.objid as mpe_qual_id preserving type) as MfgHumanResourceQualification,
Qualification.stext as MfgHumRsceQualificationDesc,
case GroupList.MfgHumRsceQualificationIsGroup
when 0 then
cast('00000000' as hrobjid preserving type ) else
GroupList.MfgHumanResourceQualification end as MfgHumRsceQualificationGroup,
case GroupList.MfgHumRsceQualificationIsGroup
when 0 then
'' else
GroupList.MfgHumRsceQualificationGrpDesc end as MfgHumRsceQualificationGrpDesc,
case GroupList.MfgHumRsceQualificationIsGroup
when 0 then
GroupList.MfgHumanResourceQualification
else Catalog.MfgHumRsceQualificationCatalog end as MfgHumRsceQualificationCatalog,
case GroupList.MfgHumRsceQualificationIsGroup
when 0 then
GroupList.MfgHumRsceQualificationGrpDesc
else Catalog.MfgHumRsceQualifnCatalogDesc end as MfgHumRsceQualifnCatalogDesc,
cast(Qualification.endda as enddatum preserving type ) as EndDate,
QualificationRelation.sobid as MfgHumanRsceQualifnGroupOrCtlg
}
where
Qualification.otype = 'Q'
and Qualification.langu = $session.system_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