I_AllocationStateText

DDL: I_ALLOCATIONSTATETEXT SQL: ALLOCSTATETXT Type: view COMPOSITE

Allocation Status

I_AllocationStateText is a Composite CDS View that provides data about "Allocation Status" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key field AllocationStatus.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ALLOCSTATETXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Allocation Status view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #META view
ClientHandling.algorithm #SESSION_VARIABLE view
UI.textArrangement #TEXT_LAST view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY AllocationStatus
Language ddlanguage
AllocationStatusText ddtext
@AbapCatalog.sqlViewName: 'ALLOCSTATETXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Allocation Status'
@VDM.viewType: #COMPOSITE
@ObjectModel.usageType: {
  sizeCategory: #S,
  serviceQuality: #C,
  dataClass: #META
}
@ClientHandling.algorithm: #SESSION_VARIABLE

@UI.textArrangement: #TEXT_LAST
define view I_AllocationStateText as select from dd07t
//association [0..1] to I_Language    as _Language      on $projection.Language = _Language.Language

{
  key cast (domvalue_l as rstatus) as AllocationStatus,
      ddlanguage                   as Language,
      ddtext                       as AllocationStatusText
}
where
        domname      = 'ALLOCATIONSTATETEXT'
    and ddlanguage   = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/