I_SchedulingType

DDL: I_SCHEDULINGTYPE SQL: IPPSCHEDTYPE Type: view BASIC

Scheduling Type

I_SchedulingType is a Basic CDS View (Dimension) that provides data about "Scheduling Type" in SAP S/4HANA. It reads from 1 data source (t482) and exposes 7 fields with key field SchedulingType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t482 typ from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_SchedulingTypeText _Text $projection.SchedulingType = _Text.SchedulingType

Annotations (25)

NameValueLevelField
AbapCatalog.sqlViewName IPPSCHEDTYPE view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 001 view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
Consumption.ranked true view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.compositionRoot true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey SchedulingType view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.sapObjectNodeType.name SchedulingType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
Search.searchable true view
EndUserText.label Scheduling Type view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY SchedulingType
SchedulingIsPerformedForward t482 vorwt
SchedulingIsPerformedBackward t482 ruekt
SchedgIsPerformedFromCurDate t482 tagdt
CalcOfCapacityRqmtsIsPerformed t482 nterm
SchedulingTypeIsTimeBased t482 eck_uhrzt
_Text _Text
@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":""
}
}*/