I_SPECAUTHORIZATIONGROUPTEXT

CDS View

Specification Authorization Group Text

I_SPECAUTHORIZATIONGROUPTEXT is a CDS View in S/4HANA. Specification Authorization Group Text. It contains 1 fields. 3 CDS views read from this table.

CDS Views using this table (3)

ViewTypeJoinVDMDescription
A_SpecAuthorizationGroupText view from BASIC Specification Authorization Group Text
I_ProdSpecAuthznGroupText view from COMPOSITE Product Specification Authorization Group - Text
I_RecipeAuthorizationGroupText view from COMPOSITE Recipe Authorization Group Text

Fields (1)

KeyField CDS FieldsUsed in Views
KEY Language Language 1
@AbapCatalog.preserveKey: true
@AbapCatalog.sqlViewName: 'ISPECAUTHGROUPT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK

@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'SpecificationAuthznGroup'
@ObjectModel.semanticKey: [ 'SpecificationAuthznGroup' ]

@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING

@Search.searchable: true

@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #BASIC

@EndUserText.label: 'Specification Authorization Group Text'
define view I_SpecAuthorizationGroupText
  as select from tcg37
  association [0..1] to I_Language               as _Language           on $projection.Language = _Language.Language
  association [0..1] to I_SpecAuthorizationGroup as _AuthorizationGroup on $projection.SpecificationAuthznGroup = _AuthorizationGroup.SpecificationAuthznGroup
{
      @ObjectModel.foreignKey.association: '_AuthorizationGroup'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
  key cast(tcg37.authgrp as /plmb/spc_auth_group preserving type )      as SpecificationAuthznGroup,

      @Semantics.language
      @ObjectModel.foreignKey.association: '_Language'
  key tcg37.langu                                                       as Language,

      @Semantics.text: true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      cast(tcg37.authnam as /plmb/spc_auth_group_desc preserving type ) as SpecificationAuthznGroupDesc,

      /* Association */
      _Language,
      _AuthorizationGroup
}