P_AllocDisplayCurrencyTypeName

DDL: P_ALLOCDISPLAYCURRENCYTYPENAME SQL: PALLOCCURYPENM Type: view BASIC

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

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

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY AllocationDisplayCurrencyType
KEY Language
AllocDisplayCurrencyTypeName
_Language _Language
@AbapCatalog.sqlViewName: 'PALLOCCURYPENM'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@AbapCatalog.preserveKey:true
@VDM.private: true

define view P_AllocDisplayCurrencyTypeName
  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, 1) as fco_alloc_ng_currency_type ) as AllocationDisplayCurrencyType,

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

      @Semantics.text: true
      cast(ddtext as fco_alloc_ng_curr_type_name)                        as AllocDisplayCurrencyTypeName,
      _Language

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