C_SchedProdnOpSetupGroupVH

DDL: C_SCHEDPRODNOPSETUPGROUPVH SQL: CSHPDOPSTPGRPVH Type: view CONSUMPTION

Value Help for Setup Group

C_SchedProdnOpSetupGroupVH is a Consumption CDS View that provides data about "Value Help for Setup Group" in SAP S/4HANA. It reads from 1 data source (I_SDMAreaOfResponsibility) and exposes 4 fields with key fields Plant, OperationSetupGroupCategory, OperationSetupGroup.

Data Sources (1)

SourceAliasJoin Type
I_SDMAreaOfResponsibility _AreaOfResponsibility inner

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CSHPDOPSTPGRPVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #CONSUMPTION view
Search.searchable true view
AbapCatalog.preserveKey true view
ObjectModel.dataCategory #VALUE_HELP view
EndUserText.label Value Help for Setup Group view
Consumption.ranked true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Plant _SetupGroup Plant
KEY OperationSetupGroupCategory _SetupGroup OperationSetupGroupCategory
KEY OperationSetupGroup OperationSetupGroup Setup Group
OperationSetupGroupName Setup Group Name
@AbapCatalog.sqlViewName: 'CSHPDOPSTPGRPVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking:  #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {serviceQuality: #C, sizeCategory: #XL, dataClass: #MASTER}
@VDM.viewType: #CONSUMPTION
@Search.searchable: true
@AbapCatalog.preserveKey:true
@ObjectModel.dataCategory:#VALUE_HELP
@EndUserText.label: 'Value Help for Setup Group'
@Consumption.ranked: true
define view C_SchedProdnOpSetupGroupVH
  as select distinct from I_OperationSetupGroup as _SetupGroup
  inner join I_SDMAreaOfResponsibility as _AreaOfResponsibility on  _AreaOfResponsibility.Plant = _SetupGroup.Plant
                                                                and _AreaOfResponsibility.UserID = $session.user
{

  key _SetupGroup.Plant,
  
  key _SetupGroup.OperationSetupGroupCategory,

      @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
      @ObjectModel.text.element:  [ 'OperationSetupGroupName' ]
      @EndUserText.label: 'Setup Group'
  key OperationSetupGroup,

      @EndUserText.label: 'Setup Group Name'
      @Semantics.text: true
      @Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8 }
      _Text[1:Language=$session.system_language].OperationSetupGroupName
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_OPERATIONSETUPGROUP",
"I_OPERATIONSETUPGROUPTEXT",
"I_SDMAREAOFRESPONSIBILITY"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/