C_RealTimeOrderKeyStatusVH

DDL: C_REALTIMEORDERKEYSTATUSVH SQL: CRTORDKSTVH Type: view CONSUMPTION

Order Key Status

C_RealTimeOrderKeyStatusVH is a Consumption CDS View that provides data about "Order Key Status" in SAP S/4HANA. It reads from 1 data source (I_SystemStatus) and exposes 2 fields with key field SystemStatus.

Data Sources (1)

SourceAliasJoin Type
I_SystemStatus I_SystemStatus from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CRTORDKSTVH view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
Search.searchable true view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Order Key Status view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY SystemStatus SystemStatus
SystemStatusName
@AbapCatalog.sqlViewName: 'CRTORDKSTVH'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #NOT_REQUIRED
@Search.searchable: true
@VDM.viewType: #CONSUMPTION
@ObjectModel: {
    dataCategory: #VALUE_HELP,
    usageType: {
        dataClass: #MASTER,
        serviceQuality: #A,
        sizeCategory: #S
    }
}
@EndUserText.label: 'Order Key Status'
define view C_RealTimeOrderKeyStatusVH
  as select from I_SystemStatus
{
      @ObjectModel.text.element: ['SystemStatusName']
  key SystemStatus,

      @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7 }
      @Semantics.text: true
      _SystemStatusText[1:Language = $session.system_language].SystemStatusName

}
where
     SystemStatus = 'I0002' //Released

  or SystemStatus = 'I0009' //Confirmed

  or SystemStatus = 'I0012' //Delivered

  or SystemStatus = 'I0042' //Partially Released

  or SystemStatus = 'I0045' //Technicaly Completed

  or SystemStatus = 'I0046' //Closed

  or SystemStatus = 'I0076' //Deletion Flag

/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SYSTEMSTATUS",
"I_SYSTEMSTATUSTEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/