P_AllocationObjectTypeText

DDL: P_ALLOCATIONOBJECTTYPETEXT SQL: PALLOCOBJTYPETXT Type: view BASIC

P_AllocationObjectTypeText is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields AllocationObjectType, 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 PALLOCOBJTYPETXT view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey AllocationObjectType view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
AbapCatalog.preserveKey true view
VDM.private true view

Fields (4)

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

define view P_AllocationObjectTypeText
  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_alloc_object_type ) as AllocationObjectType,

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

      @Semantics.text: true
      cast(ddtext as fco_alloc_object_type_text)                     as AllocationObjectTypeName,
      _Language

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