C_WorkCenterGroupVH
Consumption VH for Work Center Group
C_WorkCenterGroupVH is a Consumption CDS View that provides data about "Consumption VH for Work Center 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 (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CWRKCTRGROUPVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Consumption VH for Work Center Group | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Search.searchable | true | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| Consumption.ranked | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | WorkCenterGroupTypeCode | WorkCenterGroupTypeCode | ||
| KEY | WorkCenterGroupInternalID | WorkCenterGroupInternalID | Group ID | |
| WorkCenterGroup | WorkCenterGroup | Work Center Group | ||
| WorkCenterGroupType | WorkCenterGroupType | Group Type | ||
| Plant | Plant | Plant | ||
| WorkCenterGroupDescription | WorkCenterGroupDescription | Group Description |
@AbapCatalog.sqlViewName: 'CWRKCTRGROUPVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Consumption VH for Work Center Group'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
@VDM.viewType: #CONSUMPTION
@ObjectModel.semanticKey: ['WorkCenterGroup', 'WorkCenterGroupType']
@ObjectModel.usageType: {serviceQuality: #C, sizeCategory: #L, dataClass: #MASTER}
@ObjectModel.dataCategory: #VALUE_HELP
@Consumption.ranked: true
define view C_WorkCenterGroupVH
as select from I_WorkCenterGroup
{
@UI.hidden: true
key WorkCenterGroupTypeCode,
@UI.hidden: true
@EndUserText.label: 'Group ID'
key WorkCenterGroupInternalID,
@EndUserText.label: 'Work Center Group'
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
WorkCenterGroup,
@EndUserText.label: 'Group Type'
@Search.defaultSearchElement: false
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
WorkCenterGroupType,
@EndUserText.label: 'Plant'
@Search.defaultSearchElement: false
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
Plant,
@EndUserText.label: 'Group Description'
@Search.defaultSearchElement: false
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
WorkCenterGroupDescription
}
where
IsDeleted <> 'X'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_WORKCENTERGROUP"
],
"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