I_MfgQualificationGroup
Display HR Qualification Group and its Catalog
I_MfgQualificationGroup is a Basic CDS View that provides data about "Display HR Qualification Group and its Catalog" in SAP S/4HANA. It reads from 3 data sources (hrp1000, hrp1001, t77s0) and exposes 3 fields with key field MfgHumRsceQualificationGroup.
Data Sources (3)
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMFGQUALGRP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Display HR Qualification Group and its Catalog | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
@AbapCatalog.sqlViewName: 'IMFGQUALGRP'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Display HR Qualification Group and its Catalog'
@VDM.viewType: #BASIC
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_MfgQualificationGroup
as select from hrp1001 as QualificationGroup
inner join t77s0 as SystemTable on SystemTable.grpid = 'PLOGI'
and SystemTable.semid = 'PLOGI'
and SystemTable.gsval = QualificationGroup.plvar
inner join hrp1000 as CatalogDetail on CatalogDetail.plvar = QualificationGroup.plvar
and CatalogDetail.objid = QualificationGroup.sobid
and CatalogDetail.otype = 'QK'
and CatalogDetail.langu = $session.system_language
{
key QualificationGroup.objid as MfgHumRsceQualificationGroup,
QualificationGroup.sobid as MfgHumRsceQualificationCatalog,
CatalogDetail.stext as MfgHumRsceQualifnCatalogDesc
}
where
QualificationGroup.otype = 'QK'
and QualificationGroup.sclas = 'QK'
and QualificationGroup.rsign = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"HRP1000",
"HRP1001",
"T77S0"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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