I_SchedulingFloatProfile

DDL: I_SCHEDULINGFLOATPROFILE SQL: ISCHEDLFLOATPRFL Type: view BASIC Package: VDM_PP_MRP

Scheduling Float Profile

I_SchedulingFloatProfile is a Basic CDS View (Dimension) that provides data about "Scheduling Float Profile" in SAP S/4HANA. It reads from 1 data source (t436a) and exposes 7 fields with key fields Plant, SchedulingFloatProfile. It has 1 association to related views. Part of development package VDM_PP_MRP.

Data Sources (1)

SourceAliasJoin Type
t436a t436a from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_Plant _Plant $projection.Plant = _Plant.Plant

Annotations (23)

NameValueLevelField
AbapCatalog.sqlViewName ISCHEDLFLOATPRFL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 001 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.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.sapObjectNodeType.name SchedulingFloatProfile view
ObjectModel.representativeKey SchedulingFloatProfile view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Scheduling Float Profile view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Plant werks
KEY SchedulingFloatProfile
OpeningPeriodInWorkDays erhor
ReleasePeriodInWorkDays
FloatAfterProductionInWorkDays
FloatBeforeProductionInWrkDays
_Plant _Plant
@AbapCatalog.sqlViewName: 'ISCHEDLFLOATPRFL'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.buffering: {status: #ACTIVE, type: #GENERIC, numberOfKeyFields: 001}
@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.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.sapObjectNodeType.name: 'SchedulingFloatProfile' 
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #CDS_MODELING_DATA_SOURCE, #EXTRACTION_DATA_SOURCE, #SQL_DATA_SOURCE, #SEARCHABLE_ENTITY]
@ObjectModel.representativeKey: 'SchedulingFloatProfile'
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Scheduling Float Profile'

define view I_SchedulingFloatProfile
  as select from t436a
  
  association [1..1] to I_Plant as _Plant on $projection.Plant = _Plant.Plant
  {
      @ObjectModel.foreignKey.association: '_Plant'
  key werks                                    as Plant,
      @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
  key cast(fhori as vdm_fhori preserving type) as SchedulingFloatProfile,

      // Floats

      erhor                                    as OpeningPeriodInWorkDays,
      cast(freiz as vdm_freiz preserving type) as ReleasePeriodInWorkDays,
      cast(sichz as vdm_sichz preserving type) as FloatAfterProductionInWorkDays,
      cast(vorgz as vdm_vorgz preserving type) as FloatBeforeProductionInWrkDays,

      // Associations

      _Plant
  };