I_AllocationSenderRuleText

DDL: I_ALLOCATIONSENDERRULETEXT SQL: IALOSENDERRULET Type: view BASIC

Allocation Sender Rule Text

I_AllocationSenderRuleText is a Basic CDS View that provides data about "Allocation Sender Rule Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields AllocationSenderRule, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_AllocationSegment _AllocationSegment $projection.AllocationSenderRule = _AllocationSegment.AllocationSenderRule
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IALOSENDERRULET view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Allocation Sender Rule Text view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey AllocationSenderRule view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY AllocationSenderRule
KEY Language dd07t ddlanguage
AllocationSenderRuleText dd07t ddtext
_AllocationSegment _AllocationSegment
_Language _Language
@AbapCatalog.sqlViewName: 'IALOSENDERRULET'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Allocation Sender Rule Text'

@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'AllocationSenderRule'
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING

//@VDM.lifecycle.contract.type: #SAP_INTERNAL_API

@VDM.viewType: #BASIC
define view I_AllocationSenderRuleText as 
select from dd07t
  association [0..1] to I_AllocationSegment as _AllocationSegment on $projection.AllocationSenderRule = _AllocationSegment.AllocationSenderRule
  association [0..1] to I_Language          as _Language          on $projection.Language = _Language.Language 
{
      @ObjectModel.foreignKey.association: '_AllocationSegment'
  key cast( dd07t.domvalue_l as srule )     as AllocationSenderRule,

      @Semantics.language
      @ObjectModel.foreignKey.association: '_Language'
  key dd07t.ddlanguage                                      as Language,

      @Semantics.text
      dd07t.ddtext                                          as AllocationSenderRuleText,

      /* Associations */
      _AllocationSegment,
      _Language
}
where dd07t.domname  = 'SRULE'
  and dd07t.as4local = 'A';   


  
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_ALLOCATIONSEGMENT",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/