C_JITCtrlCycleReceivingPointVH

DDL: C_JITCTRLCYCLERECEIVINGPOINTVH Type: view_entity CONSUMPTION

JIT Control Cycle Receiving Point

C_JITCtrlCycleReceivingPointVH is a Consumption CDS View that provides data about "JIT Control Cycle Receiving Point" in SAP S/4HANA. It reads from 2 data sources (I_JITGoodsReceivingPoint, I_ShippingPointVH) and exposes 5 fields with key field GoodsReceivingPoint.

Data Sources (2)

SourceAliasJoin Type
I_JITGoodsReceivingPoint _GoodsReceivingPoint inner
I_ShippingPointVH _ShippingPoint inner

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey GoodsReceivingPoint view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.dataCategory #VALUE_HELP view
EndUserText.label JIT Control Cycle Receiving Point view
Search.searchable true view
Consumption.ranked true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY GoodsReceivingPoint I_ShippingPointVH ShippingPoint Receiving Point
ShippingPointName
StorageLocation I_JITGoodsReceivingPoint StorageLocation StorageLocation
ProductionSupplyArea _ProductionSupplyArea ProductionSupplyArea Supply Area
Plant _ProductionSupplyArea Plant Valuation Area

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 C_JITCtrlCycleReceivingPointVH.
-- 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 C_JITCtrlCycleReceivingPointVH AS
SELECT
  _ShippingPoint.ShippingPoint AS GoodsReceivingPoint,
  _ShippingPoint._Text[1:Language = $session.system_language].ShippingPointName AS ShippingPointName,
  _GoodsReceivingPoint.StorageLocation AS StorageLocation,
  _ProductionSupplyArea.ProductionSupplyArea AS ProductionSupplyArea,
  _ProductionSupplyArea.Plant AS Plant
INNER JOIN I_JITGoodsReceivingPoint AS _GoodsReceivingPoint ON /* join condition not captured in parsed metadata */
INNER JOIN I_ShippingPointVH AS _ShippingPoint ON /* join condition not captured in parsed metadata */
;