P_AllocationRunTypeText

DDL: P_ALLOCATIONRUNTYPETEXT SQL: PALLOCRUNTYPTXT Type: view BASIC

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

NameValueLevelField
AbapCatalog.sqlViewName PALLOCRUNTYPTXT view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey AllocationRunType view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
AbapCatalog.preserveKey true view
VDM.private true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY AllocationRunType
KEY Language
AllocationRunTypeName
_Language _Language
@AbapCatalog.sqlViewName: 'PALLOCRUNTYPTXT'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'AllocationRunType'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@AbapCatalog.preserveKey:true
@VDM.private: true

define view P_AllocationRunTypeText
  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 fco_alloc_run_type ) as AllocationRunType,

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

      @Semantics.text: true
      cast(ddtext as fco_alloc_run_type_text)                     as AllocationRunTypeName,
      _Language

}
where
      domname  = 'FCO_ALLOC_RUN_TYPE'
  and as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/