I_SchedulingSchema

DDL: I_SCHEDULINGSCHEMA Type: view_entity BASIC Package: BPS_VDM

Scheduling Schema

I_SchedulingSchema is a Basic CDS View that provides data about "Scheduling Schema" in SAP S/4HANA. It reads from 1 data source (bps_schema) and exposes 4 fields with key field SchedulingSchema. It has 2 associations to related views. Part of development package BPS_VDM.

Data Sources (1)

SourceAliasJoin Type
bps_schema SchedulingSchema from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_SchedulingSchemaText _Text $projection.SchedulingSchema = _Text.SchedulingSchema
[1..1] I_SchedgSchemaTmeGranularity _TimeGranularity $projection.SchedgSchemaTimeGranularity = _TimeGranularity.SchedgSchemaTimeGranularity

Annotations (8)

NameValueLevelField
EndUserText.label Scheduling Schema view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey SchedulingSchema view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SchedulingSchema schema_id
SchedgSchemaTimeGranularity time_granularity
_TimeGranularity _TimeGranularity
_Text _Text
@EndUserText.label: 'Scheduling Schema'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.viewEnhancementCategory: [#NONE]
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
    representativeKey: 'SchedulingSchema',
    usageType: {
      serviceQuality: #C,
      sizeCategory: #S,
      dataClass: #ORGANIZATIONAL
    }
}
define view entity I_SchedulingSchema
  as select from bps_schema as SchedulingSchema
  association [0..*] to I_SchedulingSchemaText       as _Text            on $projection.SchedulingSchema = _Text.SchedulingSchema
  association [1..1] to I_SchedgSchemaTmeGranularity as _TimeGranularity on $projection.SchedgSchemaTimeGranularity = _TimeGranularity.SchedgSchemaTimeGranularity
{
      @Semantics.text: true
  key schema_id        as SchedulingSchema,

      @ObjectModel.foreignKey.association: '_TimeGranularity'
      time_granularity as SchedgSchemaTimeGranularity,
      _TimeGranularity,
      _Text
}