I_JITOutbControlCyclePrimary

DDL: I_JITOUTBCONTROLCYCLEPRIMARY SQL: IJITCTRLCYCP Type: view COMPOSITE

Primary Control Cycle

I_JITOutbControlCyclePrimary is a Composite CDS View that provides data about "Primary Control Cycle" in SAP S/4HANA. It reads from 1 data source (I_JITControlCycle) and exposes 14 fields with key field JITControlCycle.

Data Sources (1)

SourceAliasJoin Type
I_JITControlCycle I_JITControlCycle from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IJITCTRLCYCP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Primary Control Cycle view
VDM.viewType #COMPOSITE view
ObjectModel.representativeKey JITControlCycle view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.preserveKey true view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY JITControlCycle JITControlCycle
Material Material
Plant Plant
ProductionSupplyArea ProductionSupplyArea
JITContainerQuantityInBsUnt JITContainerQuantityInBsUnt
QuantityUnit QuantityUnit
SourceProductionSupplyArea SourceProductionSupplyArea
StorageType StorageType
StorageTypeName StorageTypeName
StorageBin StorageBin
ReplnmtPlanningProcedure ReplnmtPlanningProcedure
ReplenishmentStrategyDesc
ReplenishmentStrategy ReplenishmentStrategy
JITPlanningProcedureText
@AbapCatalog.sqlViewName: 'IJITCTRLCYCP'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Primary Control Cycle'
@VDM.viewType: #COMPOSITE
@ObjectModel.representativeKey: 'JITControlCycle'
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.preserveKey:true
define view I_JITOutbControlCyclePrimary
  as select from I_JITControlCycle
{

  key JITControlCycle                                                                          as JITControlCycle,
      Material                                                                                 as Material,
      Plant                                                                                    as Plant,
      ProductionSupplyArea                                                                     as ProductionSupplyArea,
      @Semantics.quantity.unitOfMeasure: 'QuantityUnit'
      JITContainerQuantityInBsUnt                                                              as JITContainerQuantityInBsUnt,
      QuantityUnit,
      SourceProductionSupplyArea                                                               as SourceProductionSupplyArea,
      StorageType,
      StorageTypeName,
      StorageBin,
      ReplnmtPlanningProcedure,
      _JITOutbReplenish._JITOutbReplenishText[1: Language = $session.system_language].ReplenishmentStrategyDesc,

      ReplenishmentStrategy,
      _JITPlngProcedure._Text[1: Language = $session.system_language].JITPlanningProcedureText as JITPlanningProcedureText

}
where
       SourceProductionSupplyArea is not initial
  and(
       JITCtrlCycLifeCycSts       = '3'
    or JITCtrlCycLifeCycSts       = '2'
  )
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_JITCONTROLCYCLE",
"I_JITOUTBPLNGPROCEDURE",
"I_JITOUTBPLNGPROCEDURETEXT",
"I_JITOUTBREPLNMTSTRGY",
"I_JITOUTBREPLNMTSTRGYTEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/