I_LegalRegulationText

DDL: I_LEGALREGULATIONTEXT SQL: ILEGRGLNT Type: view BASIC

Legal Regulation Text

I_LegalRegulationText is a Basic CDS View that provides data about "Legal Regulation Text" in SAP S/4HANA. It reads from 1 data source (/sapsll/t606gt) and exposes 5 fields with key fields Language, LegalRegulation. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/sapsll/t606gt /sapsll/t606gt from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language _Language.Language = $projection.Language
[0..1] I_LegalRegulation _LegalRegulation _LegalRegulation.LegalRegulation = $projection.LegalRegulation

Annotations (13)

NameValueLevelField
EndUserText.label Legal Regulation Text view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
AbapCatalog.sqlViewName ILEGRGLNT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey LegalRegulation view
Search.searchable false view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #SINGLE view
ObjectModel.usageType.sizeCategory M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language langu
KEY LegalRegulation lgreg
LegalRegulationName text1
_Language _Language
_LegalRegulation _LegalRegulation
@EndUserText.label: 'Legal Regulation Text'
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@AbapCatalog.sqlViewName: 'ILEGRGLNT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'LegalRegulation'
@Search.searchable: false

@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #SINGLE
@ObjectModel.usageType.sizeCategory: 'M'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #MASTER
define view I_LegalRegulationText
  as select from /sapsll/t606gt
  association [0..1] to I_Language        as _Language        on _Language.Language = $projection.Language
  association [0..1] to I_LegalRegulation as _LegalRegulation on _LegalRegulation.LegalRegulation = $projection.LegalRegulation
{
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key langu  as Language,
      @ObjectModel.foreignKey.association: '_LegalRegulation'
  key lgreg  as LegalRegulation,
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH  
      @Semantics.text: true
      text1  as LegalRegulationName,

      _Language,
      _LegalRegulation
}