I_SCHEDULINGTYPE

CDS View

Scheduling Type

I_SCHEDULINGTYPE is a CDS View in S/4HANA. Scheduling Type. It contains 3 fields. 7 CDS views read from this table.

CDS Views using this table (7)

ViewTypeJoinVDMDescription
C_RSHSchedulingTypeVH view from CONSUMPTION Scheduling Type Value Help
I_SchedulingTypeVH view from BASIC Scheduling Type
P_RSHDueOperForKPIDetails view inner CONSUMPTION Past Order Operation KPI Details
P_RSHMntSchdOrdOpWOExplRel view inner CONSUMPTION Schedule Operations w/o explicit rel
P_RSHOperationsForKPIDetails view inner CONSUMPTION Order KPI Details
P_RSHOrdOpForImplicitRel view inner CONSUMPTION Schedule Operations w/o explicit rel
P_RSHPastOperForKPIDetails view inner CONSUMPTION Past Order Operation KPI Details

Fields (3)

KeyField CDS FieldsUsed in Views
KEY SchedulingType SchedulingType 1
CalcOfCapacityRqmtsIsPerformed CalcOfCapacityRqmtsIsPerformed 1
SchedulingIsPerformedBackward SchedulingIsPerformedBackward 1
@AbapCatalog.sqlViewName: 'IPPSCHEDTYPE'
@AbapCatalog.buffering: {status: #ACTIVE, type: #GENERIC, numberOfKeyFields: 001}
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@Analytics.dataExtraction.enabled: true
@Analytics.internalName: #LOCAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@Consumption.ranked: true
@Metadata.allowExtensions: true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.compositionRoot: true
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #SEARCHABLE_ENTITY, #EXTRACTION_DATA_SOURCE]
@ObjectModel.representativeKey: 'SchedulingType'
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.sapObjectNodeType.name: 'SchedulingType'
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING}
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@Search.searchable: true
@EndUserText.label: 'Scheduling Type'

define view I_SchedulingType
  as select from t482 as typ
  association [0..*] to I_SchedulingTypeText as _Text on $projection.SchedulingType = _Text.SchedulingType
{
      @ObjectModel.text.association: '_Text'
      // Key

      @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
  key cast(typ.termkz as pph_termkz preserving type) as SchedulingType,
  
      // Indicators

      typ.vorwt     as SchedulingIsPerformedForward,
      typ.ruekt     as SchedulingIsPerformedBackward,
      typ.tagdt     as SchedgIsPerformedFromCurDate,
      typ.nterm     as CalcOfCapacityRqmtsIsPerformed,
      typ.eck_uhrzt as SchedulingTypeIsTimeBased,

      // Associations

      @ObjectModel.association.type: [#TO_COMPOSITION_CHILD]
      _Text
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T482"
],
"ASSOCIATED":
[
"I_SCHEDULINGTYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/