P_AllocationRunReversedText

DDL: P_ALLOCATIONRUNREVERSEDTEXT SQL: PALLOCRUNREVTXT Type: view BASIC

P_AllocationRunReversedText is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields AllocationRunIsReversed, 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 (10)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName PALLOCRUNREVTXT view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.private true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY AllocationRunIsReversed
KEY Language
AllocationRunIsReversedText
_Language _Language
@AbapCatalog.preserveKey: true
@AbapCatalog.sqlViewName: 'PALLOCRUNREVTXT'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
//@ObjectModel.dataCategory: #TEXT

@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@VDM.private:true


define view P_AllocationRunReversedText
  as select from dd07t

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

{
  key cast( substring( domvalue_l, 1, 1) as alloc_run_is_reversed )          as AllocationRunIsReversed,

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

      @Semantics.text: true
      cast( ddtext as alloc_run_reversed_text )                              as AllocationRunIsReversedText,
      _Language

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

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