I_InspLotDynamicRuleText

DDL: I_INSPLOTDYNAMICRULETEXT SQL: IINSPDYNRULET Type: view BASIC

Dynamic Modification Rule – Text

I_InspLotDynamicRuleText is a Basic CDS View that provides data about "Dynamic Modification Rule – Text" in SAP S/4HANA. It reads from 1 data source (qddrt) and exposes 5 fields with key fields InspLotDynamicRule, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
qddrt qddrt from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_InspLotDynamicRule _InspLotDynamicRule $projection.InspLotDynamicRule = _InspLotDynamicRule.InspLotDynamicRule

Annotations (16)

NameValueLevelField
EndUserText.label Dynamic Modification Rule – Text view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Search.searchable true view
AccessControl.authorizationCheck #MANDATORY view
AbapCatalog.sqlViewName IINSPDYNRULET view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey InspLotDynamicRule view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY InspLotDynamicRule
KEY Language sprache
InspLotDynamicRuleText kurztext
_InspLotDynamicRule _InspLotDynamicRule
_Language _Language
@EndUserText.label: 'Dynamic Modification Rule – Text'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@Search.searchable: true
@AccessControl.authorizationCheck: #MANDATORY
@AbapCatalog.sqlViewName: 'IINSPDYNRULET'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'InspLotDynamicRule'
@ObjectModel.usageType: { serviceQuality: #A, sizeCategory: #S, dataClass: #MASTER }
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.supportedCapabilities:
  [ #LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #SEARCHABLE_ENTITY]
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
define view I_InspLotDynamicRuleText
  as select from qddrt
  association [0..1] to I_Language           as _Language           on $projection.Language = _Language.Language
  association [1..1] to I_InspLotDynamicRule as _InspLotDynamicRule on $projection.InspLotDynamicRule = _InspLotDynamicRule.InspLotDynamicRule
{
  key cast( dynregel as vdm_qdynregel preserving type ) as InspLotDynamicRule,
      @Semantics.language: true
  key sprache  as Language, //text views shall always be language dependent

      @Semantics.text: true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      kurztext as InspLotDynamicRuleText,
      _InspLotDynamicRule,
      _Language

}