I_JITSupplyControlOffset

DDL: I_JITSUPPLYCONTROLOFFSET Type: view_entity BASIC

JIT Supply Control Offset

I_JITSupplyControlOffset is a Basic CDS View (Dimension) that provides data about "JIT Supply Control Offset" in SAP S/4HANA. It reads from 1 data source (njit_d_sc_offst) and exposes 7 fields with key field SupplyControlOffsetUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
njit_d_sc_offst njit_d_sc_offst from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_JITOffsetType _JITOffsetType $projection.JITOffsetType = _JITOffsetType.JITOffsetType

Annotations (13)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
EndUserText.label JIT Supply Control Offset view
Metadata.allowExtensions true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey SupplyControlOffsetUUID view
ObjectModel.sapObjectNodeType.name JITSupplyControlOffset view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY SupplyControlOffsetUUID supplycontroloffsetuuid NodeID
SupplyControlUUID supplycontroluuid NodeID
JITOffsetType jitoffsettype Offset Type
OffsetInDays offsetindays Offset Days
OffsetInHours offsetinhours Offset In Hrs
_JITSupplyControlHeader _JITSupplyControlHeader
_JITOffsetType _JITOffsetType

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_JITSupplyControlOffset.
-- 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.

CREATE VIEW I_JITSupplyControlOffset AS
SELECT
  SupplyControlOffsetUUID,
  SupplyControlUUID,
  JITOffsetType,
  OffsetInDays,
  OffsetInHours
FROM njit_d_sc_offst
LEFT OUTER JOIN I_JITOffsetType AS _JITOffsetType ON JITOffsetType = _JITOffsetType.JITOffsetType  -- association [0..1]
;