I_MatlQualityAuthGroup
Material Authzn Group for Qlty Mgmt
I_MatlQualityAuthGroup is a Basic CDS View that provides data about "Material Authzn Group for Qlty Mgmt" in SAP S/4HANA. It reads from 1 data source (tq01b) and exposes 2 fields with key field MatlQualityAuthorizationGroup. It has 1 association to related views. Part of development package VDM_QM_PLANNING.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tq01b | tq01b | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..*] | I_Matlqualityauthgrouptext | _Text | $projection.MatlQualityAuthorizationGroup = _Text.MatlQualityAuthorizationGroup |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Material Authzn Group for Qlty Mgmt | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| ObjectModel.representativeKey | MatlQualityAuthorizationGroup | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Analytics.technicalName | IMATLQLTYAUTHGR | view | |
| Search.searchable | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.sapObjectNodeType.name | MaterialQMAuthorizationGroup | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MatlQualityAuthorizationGroup | |||
| _Text | _Text |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Material Authzn Group for Qlty Mgmt'
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@ObjectModel.supportedCapabilities:
[ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #SEARCHABLE_ENTITY]
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel: {
representativeKey: 'MatlQualityAuthorizationGroup',
usageType: { serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING }
}
@Analytics.technicalName: 'IMATLQLTYAUTHGR'
@Search.searchable: true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.sapObjectNodeType.name: 'MaterialQMAuthorizationGroup'
//@ObjectModel.alternativeKey: [{ id: 'OID', uniqueness: #UNIQUE, element: ['MatlQMAuthorizationGroupOID'] }]
define view entity I_MatlQualityAuthGroup
as select from tq01b
left outer to one join I_MdiOidConfiguration on I_MdiOidConfiguration.ObjectTypeCode = '5649' // OTC of SOT definition MaterialQMAuthorizationGroup in GTNC
association [1..*] to I_Matlqualityauthgrouptext as _Text on $projection.MatlQualityAuthorizationGroup = _Text.MatlQualityAuthorizationGroup
{
@ObjectModel.text.association: '_Text'
@Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #HIGH }
key cast( tq01b.qmatauth as vdm_qmatauth preserving type ) as MatlQualityAuthorizationGroup,
@ObjectModel.sort.enabled:false
@ObjectModel.filter.enabled:false
case when I_MdiOidConfiguration.Context is initial then
// Context ID is not specified
cast( tq01b.qmatauth as matlqmauthorizationgroupoid )
when I_MdiOidConfiguration.Context is not initial then
// Context ID is specified
cast( concat( concat( I_MdiOidConfiguration.Context, ':' ), tq01b.qmatauth ) as matlqmauthorizationgroupoid )
end as MatlQMAuthorizationGroupOID,
//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