I_ControlGroupingText

DDL: I_CONTROLGROUPINGTEXT SQL: ICTRLGRPGTXT Type: view BASIC

Control Grouping Text

I_ControlGroupingText is a Basic CDS View that provides data about "Control Grouping Text" in SAP S/4HANA. It reads from 1 data source (/sapsll/ccgrt) and exposes 7 fields with key fields LegalRegulation, ControlGrouping, Language. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/sapsll/ccgrt /sapsll/ccgrt from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_TrdClassfctnLglRgln _LegalRegulation $projection.LegalRegulation = _LegalRegulation.LegalRegulation
[0..1] I_ControlGrouping _ControlGrouping $projection.LegalRegulation = _ControlGrouping.LegalRegulation and $projection.ControlGrouping = _ControlGrouping.ControlGrouping
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (10)

NameValueLevelField
EndUserText.label Control Grouping Text view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
AbapCatalog.sqlViewName ICTRLGRPGTXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey ControlGrouping view
ObjectModel.usageType.sizeCategory L view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY LegalRegulation lgreg
KEY ControlGrouping congr
KEY Language langu
ControlGroupingName
_LegalRegulation _LegalRegulation
_ControlGrouping _ControlGrouping
_Language _Language
@EndUserText.label: 'Control Grouping Text'
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@AbapCatalog.sqlViewName: 'ICTRLGRPGTXT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'ControlGrouping'

@ObjectModel.usageType.sizeCategory: 'L'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #MASTER
define view I_ControlGroupingText
  as select from /sapsll/ccgrt
  association [0..1] to I_TrdClassfctnLglRgln as _LegalRegulation on  $projection.LegalRegulation = _LegalRegulation.LegalRegulation
  association [0..1] to I_ControlGrouping as _ControlGrouping on  $projection.LegalRegulation = _ControlGrouping.LegalRegulation
                                                              and $projection.ControlGrouping = _ControlGrouping.ControlGrouping
  association [0..1] to I_Language        as _Language        on  $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_LegalRegulation'
  key lgreg  as LegalRegulation,
      @ObjectModel.foreignKey.association: '_ControlGrouping'
  key congr  as ControlGrouping,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key langu  as Language,
      @Semantics.text: true
      cast( text1 as /sapsll/cgrpt preserving type )  as ControlGroupingName,

      _LegalRegulation,
      _ControlGrouping,
      _Language
}