I_JITOutbReplnmtStrgy

DDL: I_JITOUTBREPLNMTSTRGY SQL: IJITOBREPL Type: view BASIC

Basic view for Replenishment strategy

I_JITOutbReplnmtStrgy is a Basic CDS View that provides data about "Basic view for Replenishment strategy" in SAP S/4HANA. It reads from 1 data source (njit_c_repl_strt) and exposes 7 fields with key fields Plant, ReplenishmentStrategy. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
njit_c_repl_strt njit_c_repl_strt from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_JITOutbReplnmtStrgyText _JITOutbReplenishText $projection.Plant = _JITOutbReplenishText.Plant and $projection.ReplenishmentStrategy = _JITOutbReplenishText.ReplenishmentStrategy
[0..1] I_JITControlType _JITControlType $projection.JITControlType = _JITControlType.JITControlType

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IJITOBREPL view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
ObjectModel.dataCategory #VALUE_HELP view
EndUserText.label Basic view for Replenishment strategy view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Plant werks Receiving Plant
KEY ReplenishmentStrategy jit_stck_transfer_repl_strat JIT Stock Transfer
JITControlType jit_control_type Control Type
GoodsMovementType bwart Valuation Type
JITPackingInstruction jit_packing_instr Use PIs
_JITOutbReplenishText _JITOutbReplenishText
_JITControlType _JITControlType

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_JITOutbReplnmtStrgy.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IJITOBREPL

CREATE VIEW I_JITOutbReplnmtStrgy AS
SELECT
  werks AS Plant,
  jit_stck_transfer_repl_strat AS ReplenishmentStrategy,
  jit_control_type AS JITControlType,
  bwart AS GoodsMovementType,
  jit_packing_instr AS JITPackingInstruction
FROM njit_c_repl_strt
LEFT OUTER JOIN I_JITOutbReplnmtStrgyText AS _JITOutbReplenishText ON Plant = _JITOutbReplenishText.Plant AND ReplenishmentStrategy = _JITOutbReplenishText.ReplenishmentStrategy  -- association [0..*]
LEFT OUTER JOIN I_JITControlType AS _JITControlType ON JITControlType = _JITControlType.JITControlType  -- association [0..1]
;