I_WorkCenterGroupText

DDL: I_WORKCENTERGROUPTEXT SQL: IPPWRKCTRGRPTXT Type: view COMPOSITE

Work Center Group Text

I_WorkCenterGroupText is a Composite CDS View that provides data about "Work Center Group Text" in SAP S/4HANA. It reads from 1 data source (I_ProductionResourceText) and exposes 6 fields with key fields WorkCenterGroupTypeCode, WorkCenterGroupInternalID, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_ProductionResourceText text from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_ProductionResourceType _ProductionResourceType $projection.WorkCenterGroupTypeCode = _ProductionResourceType.ProductionResourceType
[1..1] I_Language _Language $projection.Language = _Language.Language

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IPPWRKCTRGRPTXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey WorkCenterGroupInternalID view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #COMPOSITE view
EndUserText.label Work Center Group Text view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY WorkCenterGroupTypeCode I_ProductionResourceText ProductionResourceType
KEY WorkCenterGroupInternalID I_ProductionResourceText ProductionResourceInternalID
KEY Language
WorkCenterGroupDescription
_ProductionResourceType _ProductionResourceType
_Language _Language
@AbapCatalog.sqlViewName: 'IPPWRKCTRGRPTXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.representativeKey: 'WorkCenterGroupInternalID'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType: {serviceQuality: #C, sizeCategory: #L, dataClass: #MASTER}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #COMPOSITE
@EndUserText.label: 'Work Center Group Text'
define view I_WorkCenterGroupText
  as select from I_ProductionResourceText as text
  association [1..1] to I_ProductionResourceType as _ProductionResourceType on $projection.WorkCenterGroupTypeCode = _ProductionResourceType.ProductionResourceType
  association [1..1] to I_Language               as _Language               on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_ProductionResourceType'
  key text.ProductionResourceType                                         as WorkCenterGroupTypeCode,

  key text.ProductionResourceInternalID                                   as WorkCenterGroupInternalID,

      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key cast(text.Language as spras preserving type)                        as Language,

      // Text

      @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
      @Semantics.text: true
      cast(text.ProductionResourceText as productionresourcetext preserving type) as WorkCenterGroupDescription,

      _ProductionResourceType,
      _Language
}
where
  ProductionResourceType = 'G'; // only Work Center Group Texts

/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PRODUCTIONRESOURCETEXT"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_PRODUCTIONRESOURCETYPE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/