C_ResourceGroupVH
Resource Group
C_ResourceGroupVH is a Consumption CDS View that provides data about "Resource Group" in SAP S/4HANA. It reads from 1 data source (I_WorkCenterGroup) and exposes 6 fields with key fields WorkCenterGroupTypeCode, WorkCenterGroupInternalID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_WorkCenterGroup | I_WorkCenterGroup | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Resource Group | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #CONSUMPTION | view | |
| Search.searchable | true | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| Consumption.ranked | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | WorkCenterGroupTypeCode | WorkCenterGroupTypeCode | ||
| KEY | WorkCenterGroupInternalID | WorkCenterGroupInternalID | Group ID | |
| WorkCenterGroup | WorkCenterGroup | Resource Group | ||
| WorkCenterGroupType | WorkCenterGroupType | Group Type | ||
| Plant | Plant | Plant | ||
| WorkCenterGroupDescription | WorkCenterGroupDescription | Group Description |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Resource Group'
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #CONSUMPTION
@Search.searchable: true
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #MIXED
}
@Consumption.ranked: true
define view entity C_ResourceGroupVH
as select from I_WorkCenterGroup
{
@UI.hidden: true
key WorkCenterGroupTypeCode,
@UI.hidden: true
@EndUserText.label: 'Group ID'
key WorkCenterGroupInternalID,
@EndUserText.label: 'Resource Group'
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
WorkCenterGroup,
@EndUserText.label: 'Group Type'
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
WorkCenterGroupType,
@EndUserText.label: 'Plant'
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
Plant,
@EndUserText.label: 'Group Description'
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
WorkCenterGroupDescription
}
where
IsDeleted <> 'X'
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