P_AllocRunTriggerSourceName

DDL: P_ALLOCRUNTRIGGERSOURCENAME SQL: PALLOCRUNTRIGTXT Type: view BASIC

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

Fields (4)

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

define view P_AllocRunTriggerSourceName
  as select from dd07t

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

{
  key cast( substring( domvalue_l, 1, 4) as fco_alloc_run_trigger_source ) as AllocationRunTriggerSource,

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

      @Semantics.text: true
      cast(ddtext as fco_alloc_run_trig_source_text)                        as AllocationRunTriggerSourceName,
      _Language

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