I_INTORDERACTIVESYSTEMSTATUS

CDS View

Internal Order Active System Status

I_INTORDERACTIVESYSTEMSTATUS is a CDS View in S/4HANA. Internal Order Active System Status. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
C_IntOrderActiveSystemStatus view_entity from CONSUMPTION Internal Order Active System Status
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Internal Order Active System Status'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #C,
  sizeCategory: #M,
  dataClass: #MIXED
}
@VDM: {
  viewType: #COMPOSITE
}
define view entity I_IntOrderActiveSystemStatus
  as select from I_StatusObjectStatusBasic
    inner join   I_InternalOrder    as _InternalOrder    on I_StatusObjectStatusBasic.StatusObject = _InternalOrder.ControllingObject
    inner join   I_SystemStatus     as _SystemStatus     on I_StatusObjectStatusBasic.StatusCode = _SystemStatus.SystemStatus
    inner join   I_SystemStatusText as _SystemStatusText on  I_StatusObjectStatusBasic.StatusCode = _SystemStatusText.SystemStatus
                                                         and _SystemStatusText.Language           = $session.system_language
{
  key I_StatusObjectStatusBasic.StatusObject,

      @ObjectModel.text.association:null
  key _SystemStatusText.SystemStatus,
      
      @Semantics.booleanIndicator: true 
      I_StatusObjectStatusBasic.StatusIsInactive,

      _SystemStatusText.SystemStatusShortName,

      _SystemStatusText.SystemStatusName,
           
      _InternalOrder.ControllingArea,
      
      _InternalOrder.OrderType
     
}
where
      _SystemStatus.StatusIsHidden               = ''
  and I_StatusObjectStatusBasic.StatusIsInactive = ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_INTERNALORDER",
"I_STATUSOBJECTSTATUSBASIC",
"I_SYSTEMSTATUS",
"I_SYSTEMSTATUSTEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/