I_AllocCycAssignmentStatusText

DDL: I_ALLOCCYCASSIGNMENTSTATUSTEXT SQL: IALLOCCYCASTST Type: view BASIC

Alloc Cycle Assignment Status - Text

I_AllocCycAssignmentStatusText is a Basic CDS View that provides data about "Alloc Cycle Assignment Status - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields AllocCycleAssignmentStatus, 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 (11)

NameValueLevelField
AbapCatalog.sqlViewName IALLOCCYCASTST view
EndUserText.label Alloc Cycle Assignment Status - Text view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY AllocCycleAssignmentStatus
KEY Language dd07t ddlanguage
AllocCycleAssignmentStatusText
_Language _Language
@AbapCatalog.sqlViewName: 'IALLOCCYCASTST'
@EndUserText.label: 'Alloc Cycle Assignment Status - Text'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED

@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@AbapCatalog.preserveKey:true
@VDM.viewType: #BASIC
define view I_AllocCycAssignmentStatusText
  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 fco_alloc_cycle_assgmt_status ) as AllocCycleAssignmentStatus,

      @Semantics.language:true
      @ObjectModel.foreignKey.association: '_Language'
  key dd07t.ddlanguage                                                 as Language,

      @Semantics.text
      cast (dd07t.ddtext as fco_alloc_cyc_assgmt_sts_txt)             as AllocCycleAssignmentStatusText,

      /* Associations */
      _Language
}
where
      dd07t.domname  = 'FCO_ALLOC_CYCLE_ASSGMT_STATUS'
  and dd07t.as4local = 'A';