C_WorkCenterGroupVH

DDL: C_WORKCENTERGROUPVH SQL: CWRKCTRGROUPVH Type: view CONSUMPTION

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)

SourceAliasJoin Type
I_WorkCenterGroup I_WorkCenterGroup from

Annotations (12)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/