I_OperationSetupGroupText

DDL: I_OPERATIONSETUPGROUPTEXT SQL: IPPOPSETUPGRPTXT Type: view BASIC

Operation Setup Group - Text

I_OperationSetupGroupText is a Basic CDS View that provides data about "Operation Setup Group - Text" in SAP S/4HANA. It reads from 1 data source (t425t) and exposes 8 fields with key fields Plant, OperationSetupGroupCategory, OperationSetupGroup, Language. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t425t txt from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_Plant _Plant $projection.Plant = _Plant.Plant
[1..1] I_OperationSetupGroupCategory _OperationSetupGroupCategory $projection.Plant = _OperationSetupGroupCategory.Plant and $projection.OperationSetupGroupCategory = _OperationSetupGroupCategory.OperationSetupGroupCategory

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName IPPOPSETUPGRPTXT view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 001 view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey OperationSetupGroup view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Operation Setup Group - Text view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Plant t425t werks
KEY OperationSetupGroupCategory
KEY OperationSetupGroup
KEY Language t425t spras
OperationSetupGroupName t425t txt
_Plant _Plant
_OperationSetupGroupCategory _OperationSetupGroupCategory
_Language _Language
@AbapCatalog.sqlViewName: 'IPPOPSETUPGRPTXT'
@AbapCatalog.buffering: {status: #ACTIVE, type: #GENERIC, numberOfKeyFields: 001}
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true 
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #SEARCHABLE_ENTITY]
@ObjectModel.representativeKey: 'OperationSetupGroup'
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #L, dataClass: #CUSTOMIZING}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Operation Setup Group - Text'

define view I_OperationSetupGroupText
  as select from t425t as txt
  association [0..1] to I_Language                    as _Language                    on  $projection.Language = _Language.Language
  association [1..1] to I_Plant                       as _Plant                       on  $projection.Plant = _Plant.Plant
  association [1..1] to I_OperationSetupGroupCategory as _OperationSetupGroupCategory on  $projection.Plant                       = _OperationSetupGroupCategory.Plant
                                                                                      and $projection.OperationSetupGroupCategory = _OperationSetupGroupCategory.OperationSetupGroupCategory
{
      @ObjectModel.foreignKey.association: '_Plant'
  key txt.werks as Plant,
      @ObjectModel.foreignKey.association: '_OperationSetupGroupCategory'
  key cast(txt.rfgrp as pph_rfgrp preserving type) as OperationSetupGroupCategory,
      @ObjectModel.text.element: 'OperationSetupGroupName'
  key cast(txt.rfsch as pph_rfsch preserving type) as OperationSetupGroup,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key txt.spras as Language,
      @Search: {defaultSearchElement: true, fuzzinessThreshold: 0.8,ranking: #HIGH}
      @Semantics.text: true
      txt.txt   as OperationSetupGroupName,

      // Associations

      _Plant,
      _OperationSetupGroupCategory,
      _Language
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T425T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_OPERATIONSETUPGROUPCATEGORY",
"I_PLANT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/