I_AllocationContextTypeText

DDL: I_ALLOCATIONCONTEXTTYPETEXT SQL: IALLOCCONTEXTTXT Type: view BASIC

Allocation Context Text

I_AllocationContextTypeText is a Basic CDS View that provides data about "Allocation Context Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields AllocationType, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IALLOCCONTEXTTXT view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey AllocationType view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
EndUserText.label Allocation Context Text view
ObjectModel.resultSet.sizeCategory #XS view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY AllocationType
KEY Language
AllocationContextTypeText
_Language _Language
@AbapCatalog.sqlViewName: 'IALLOCCONTEXTTXT'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'AllocationType'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@EndUserText.label: 'Allocation Context Text'
@ObjectModel.resultSet.sizeCategory: #XS
define view I_AllocationContextTypeText
  as select from dd07t

  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language

{
  //key cast( substring( domvalue_l, 1, 30) as ipknz ) as DatabaseTable,

  key cast( substring( domvalue_l, 1, 30) as fco_allocation_context ) as AllocationType,

      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key cast( ddlanguage as spras )                   as Language,

      @Semantics.text: true
      cast(ddtext as fco_tab_text)                  as AllocationContextTypeText,
      _Language

}
where
      domname  = 'FCO_ALLOCATION_CONTEXT'
  and as4local = 'A';