I_AllocationStatusText

DDL: I_ALLOCATIONSTATUSTEXT SQL: IALOSTATUST Type: view BASIC

Allocation Status Text

I_AllocationStatusText is a Basic CDS View that provides data about "Allocation Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields AllocationStatus, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] P_AllocationCycle _AllocationCycle $projection.AllocationStatus = _AllocationCycle.AllocationStatus
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IALOSTATUST view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Allocation Status Text view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey AllocationStatus view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY AllocationStatus
KEY Language dd07t ddlanguage
AllocationStatusDescription
_Language _Language
@AbapCatalog.sqlViewName: 'IALOSTATUST'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Allocation Status Text'

@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'AllocationStatus'
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING

//@VDM.lifecycle.contract.type: #SAP_INTERNAL_API

@VDM.viewType: #BASIC


define view I_AllocationStatusText as 
select from dd07t
  association [0..1] to P_AllocationCycle   as _AllocationCycle on $projection.AllocationStatus = _AllocationCycle.AllocationStatus
  association [0..1] to I_Language          as _Language        on $projection.Language = _Language.Language 
{
      //@ObjectModel.foreignKey.association: '_AllocationCycle'

  key cast( dd07t.domvalue_l as fco_allocation_status )     as AllocationStatus,

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

      @Semantics.text
      cast(dd07t.ddtext as fco_allocation_status_text)      as AllocationStatusDescription,

      /* Associations */
      //_AllocationCycle,

      _Language
}
where dd07t.domname  = 'FCO_ALLOCATION_STATUS'
  and dd07t.as4local = 'A';   


  
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"P_ALLOCATIONCYCLE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/