I_JITCallCompMaterialBasic
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)
| Source | Alias | Join Type |
|---|---|---|
| njit_call_d_cmat | njit_call_d_cmat | from |
Associations (5)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [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)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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]
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA