I_JITCallCompMaterialBasic

DDL: I_JITCALLCOMPMATERIALBASIC Type: view_entity BASIC Package: NJIT_MODEL_INBOUNDCALL

JIT Call Components

I_JITCallCompMaterialBasic is a Basic CDS View that provides data about "JIT Call Components" in SAP S/4HANA. It reads from 1 data source (njit_call_d_cmat) and exposes 29 fields with key fields JITCallComponentUUID, JITHeaderUUID, JITCallCompGrpUUID, InternalJITCallNumber, CompGrpNumber. It has 5 associations to related views. Part of development package NJIT_MODEL_INBOUNDCALL.

Data Sources (1)

SourceAliasJoin Type
njit_call_d_cmat njit_call_d_cmat from

Associations (5)

CardinalityTargetAliasCondition
[1..1] I_JITCallHeaderBasic _JITCallHeaderBasic $projection.JITHeaderUUID = _JITCallHeaderBasic.JITHeaderUUID
[1..1] I_Product _ProductCompMatl $projection.Material = _ProductCompMatl.Product
[0..1] I_JITCallCompGroupBasic _JITCallCompGroupBasic $projection.JITCallCompGrpUUID = _JITCallCompGroupBasic.JITCallCompGrpUUID and $projection.InternalJITCallNumber = _JITCallCompGroupBasic.InternalJITCallNumber and $projection.CompGrpNumber = _JITCallCompGroupBasic.CompGrpNumber
[0..*] I_JITCallDocRefBasic _JITCallDocRefBasic $projection.JITCallComponentUUID = _JITCallDocRefBasic.JITCallComponentUUID
[0..1] I_ProductPlant _ProductPlant $projection.Material = _ProductPlant.Product and $projection.Plant = _ProductPlant.Plant

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label JIT Call Components view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XXL view
VDM.viewType #BASIC view

Fields (29)

KeyFieldSource TableSource FieldDescription
KEY JITCallComponentUUID db_key UUID
KEY JITHeaderUUID root_key UUID
KEY JITCallCompGrpUUID parent_key UUID
KEY InternalJITCallNumber int_call_num JIT Call Number
KEY CompGrpNumber comp_grp_num Component Group No.
KEY JITCallItemNumber call_item_num Call Item Number
Material matnr Vehicle Model
MaterialByCustomer kdmat Customer Mat.
ExtJITCallItemNumber ext_call_item_num Extl Call Item No.
SalesOrder vbeln SD Sched. Agmt
SalesOrderItem posnr WBS Element
Division spart Source supplier
RequestedQuantity requested_quantity Requested Quantity
ActualDeliveredQuantity delivered_quantity Qty
QuantityUnit meins Valuation Unit
JITIntProcessingStatus int_stat Intl Proc. Status
JITCallCompMatlBackflushStatus jitcallcompmatlbackflushstatus BackFlush Status
JITCallCompMatlBackflushType jitcallcompmatlbackflushtype BackFlush Type
JITCallCompBackflushStsUpdtdOn jitcallcompbackflushstsupdtdon BFlsh Status Updt On
JITProdnConfirmationControl
SupplyControlUUID _JITCallCompGroupBasic SupplyControlUUID NodeID
MaterialGroup
MaterialGroupName
Plant _JITCallCompGroupBasic Plant Valuation Area
_ProductCompMatl _ProductCompMatl
_JITCallDocRefBasic _JITCallDocRefBasic
_JITCallCompGroupBasic _JITCallCompGroupBasic
_ProductPlant _ProductPlant
_JITCallHeaderBasic _JITCallHeaderBasic

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_JITCallCompMaterialBasic.
-- 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_JITCallCompMaterialBasic AS
SELECT
  db_key AS JITCallComponentUUID,
  root_key AS JITHeaderUUID,
  parent_key AS JITCallCompGrpUUID,
  int_call_num AS InternalJITCallNumber,
  comp_grp_num AS CompGrpNumber,
  call_item_num AS JITCallItemNumber,
  matnr AS Material,
  kdmat AS MaterialByCustomer,
  ext_call_item_num AS ExtJITCallItemNumber,
  vbeln AS SalesOrder,
  posnr AS SalesOrderItem,
  spart AS Division,
  requested_quantity AS RequestedQuantity,
  delivered_quantity AS ActualDeliveredQuantity,
  meins AS QuantityUnit,
  int_stat AS JITIntProcessingStatus,
  JITCallCompMatlBackflushStatus,
  JITCallCompMatlBackflushType,
  JITCallCompBackflushStsUpdtdOn,
  _JITCallCompGroupBasic._JITSupplyControlHeader.JITProdnConfirmationControl AS JITProdnConfirmationControl,
  _JITCallCompGroupBasic.SupplyControlUUID AS SupplyControlUUID,
  _ProductCompMatl._ProductGroup.MaterialGroup AS MaterialGroup,
  _ProductCompMatl._ProductGroup._Text[1:Language=$session.system_language].MaterialGroupName AS MaterialGroupName,
  _JITCallCompGroupBasic.Plant AS Plant
FROM njit_call_d_cmat
LEFT OUTER JOIN I_JITCallHeaderBasic AS _JITCallHeaderBasic ON JITHeaderUUID = _JITCallHeaderBasic.JITHeaderUUID  -- association [1..1]
LEFT OUTER JOIN I_Product AS _ProductCompMatl ON Material = _ProductCompMatl.Product  -- association [1..1]
LEFT OUTER JOIN I_JITCallCompGroupBasic AS _JITCallCompGroupBasic ON JITCallCompGrpUUID = _JITCallCompGroupBasic.JITCallCompGrpUUID AND InternalJITCallNumber = _JITCallCompGroupBasic.InternalJITCallNumber AND CompGrpNumber = _JITCallCompGroupBasic.CompGrpNumber  -- association [0..1]
LEFT OUTER JOIN I_JITCallDocRefBasic AS _JITCallDocRefBasic ON JITCallComponentUUID = _JITCallDocRefBasic.JITCallComponentUUID  -- association [0..*]
LEFT OUTER JOIN I_ProductPlant AS _ProductPlant ON Material = _ProductPlant.Product AND Plant = _ProductPlant.Plant  -- association [0..1]
;