I_SchedulingRun

DDL: I_SCHEDULINGRUN Type: view_entity BASIC

Scheduling Run

I_SchedulingRun is a Basic CDS View that provides data about "Scheduling Run" in SAP S/4HANA. It reads from 1 data source (bps_run) and exposes 10 fields with key field SchedulingRunUUID. It has 7 associations to related views.

Data Sources (1)

SourceAliasJoin Type
bps_run bps_run from

Associations (7)

CardinalityTargetAliasCondition
[0..*] I_SchedulingRunRequestResult _Result $projection.SchedulingRunUUID = _Result.SchedulingRunUUID
[0..*] I_SchedgRsltDetermination _Determination $projection.SchedulingRunUUID = _Determination.SchedulingRunUUID
[0..*] I_SchedgRsltDeterminationValue _DeterminationValue $projection.SchedulingRunUUID = _DeterminationValue.SchedulingRunUUID
[0..*] I_SchedgRsltWrkgTmeInterval _Interval $projection.SchedulingRunUUID = _Interval.SchedulingRunUUID
[0..*] I_SchedulingResultMessage _Message $projection.SchedulingRunUUID = _Message.SchedulingRunUUID
[0..*] I_SchedulingRunRequestOrder _Order $projection.SchedulingRunUUID = _Order.SchedulingRunUUID
[0..*] I_SchedulingRunRequest _Request

Annotations (8)

NameValueLevelField
EndUserText.label Scheduling Run view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey SchedulingRunUUID view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY SchedulingRunUUID run_uuid
SchedulingIsSimulated is_simulated
SchedulingRunDateTime bps_run_created_at
_Request _Request
_Result _Result
_Determination _Determination
_DeterminationValue _DeterminationValue
_Interval _Interval
_Message _Message
_Order _Order
@EndUserText.label: 'Scheduling Run'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.viewEnhancementCategory: [#NONE]
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
    representativeKey: 'SchedulingRunUUID',
    usageType: {
      serviceQuality: #A,
      sizeCategory: #L,
      dataClass: #TRANSACTIONAL
    }
}

define root view entity I_SchedulingRun
  as select from bps_run
  composition [0..*] of I_SchedulingRunRequest         as _Request
  association [0..*] to I_SchedulingRunRequestResult   as _Result             on $projection.SchedulingRunUUID = _Result.SchedulingRunUUID
  association [0..*] to I_SchedgRsltDetermination      as _Determination      on $projection.SchedulingRunUUID = _Determination.SchedulingRunUUID
  association [0..*] to I_SchedgRsltDeterminationValue as _DeterminationValue on $projection.SchedulingRunUUID = _DeterminationValue.SchedulingRunUUID
  association [0..*] to I_SchedgRsltWrkgTmeInterval    as _Interval           on $projection.SchedulingRunUUID = _Interval.SchedulingRunUUID
  association [0..*] to I_SchedulingResultMessage      as _Message            on $projection.SchedulingRunUUID = _Message.SchedulingRunUUID
  association [0..*] to I_SchedulingRunRequestOrder    as _Order              on $projection.SchedulingRunUUID = _Order.SchedulingRunUUID
{
  key run_uuid           as SchedulingRunUUID,
      is_simulated       as SchedulingIsSimulated,
      bps_run_created_at as SchedulingRunDateTime,

      _Request,
      _Result,
      _Determination,
      _DeterminationValue,
      _Interval,
      _Message,
      _Order
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"BPS_RUN"
],
"ASSOCIATED":
[
"I_SCHEDGRSLTDETERMINATION",
"I_SCHEDGRSLTDETERMINATIONVALUE",
"I_SCHEDGRSLTWRKGTMEINTERVAL",
"I_SCHEDULINGRESULTMESSAGE",
"I_SCHEDULINGRUNREQUEST",
"I_SCHEDULINGRUNREQUESTORDER",
"I_SCHEDULINGRUNREQUESTRESULT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/