I_JITCustData
JIT Customer Data
I_JITCustData is a Composite CDS View that provides data about "JIT Customer Data" in SAP S/4HANA. It reads from 1 data source (I_JITCustomer) and exposes 29 fields with key field CustomerUUID. It has 4 associations to related views. Part of development package NJIT_BO_CUSTOMER.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_JITCustomer | I_JITCustomer | from |
Associations (4)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_JITCustSupplyAreaData | _JITCustSupplyAreaData | $projection.CustomerUUID = _JITCustSupplyAreaData.CustomerUUID |
| [0..*] | I_JITCustExtStatusData | _JITCustExtStatusData | $projection.CustomerUUID = _JITCustExtStatusData.CustomerUUID |
| [0..*] | I_JITCustReferenceTypeData | _JITCustReferenceTypeData | $projection.CustomerUUID = _JITCustReferenceTypeData.CustomerUUID |
| [0..1] | I_JITCustSupplyAreaInfo | _JITCustSupplyAreaInfo | $projection.CustomerUUID = _JITCustSupplyAreaInfo.CustomerUUID |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| EndUserText.label | JIT Customer Data | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.viewType | #COMPOSITE | view |
Fields (29)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CustomerUUID | CustomerUUID | NodeID | |
| ShipToParty | ShipToParty | Ship-To Party (obsolete) | ||
| JITCustomerStatus | JITCustomerStatus | Customer Status | ||
| IsJITRelevant | IsJITRelevant | JIT-Relevant | ||
| CreationDateTime | CreationDateTime | Timestamp | ||
| CreatedByUser | CreatedByUser | User Name | ||
| LastChangeDateTime | LastChangeDateTime | Timestamp | ||
| LastChangedByUser | LastChangedByUser | User Name | ||
| DaysForIntJITNumberGeneration | DaysForIntJITNumberGeneration | Extl JIT Num. Usage | ||
| IsActiveEntity | ||||
| JITDeliveryHdrSplitCriterion | JITDeliveryHdrSplitCriterion | Split Deli. Document | ||
| JITDeliveryItemSplitCriterion | JITDeliveryItemSplitCriterion | Split Criteria | ||
| JITSequenceNumberProfileID | JITSequenceNumberProfileID | Profile | ||
| JITDelivHdrSpltCritrnForPckg | JITDelivHdrSpltCritrnForPckg | Split Deli. Document | ||
| JITDelivConfIsUsed | JITDelivConfIsUsed | Delivery confirmatn | ||
| JITDelivConfForReorder | JITDelivConfForReorder | Reorder | ||
| _CustomerToBusinessPartner | _CustomerToBusinessPartner | |||
| _JITCustSupplyAreaData | _JITCustSupplyAreaData | |||
| _JITCustExtStatusData | _JITCustExtStatusData | |||
| _JITCustReferenceTypeData | _JITCustReferenceTypeData | |||
| _Customer | _Customer | |||
| _CreatedByUser | _CreatedByUser | |||
| _LastChangedByUser | _LastChangedByUser | |||
| _JITCustomerSupplyArea | _JITCustomerSupplyArea | |||
| _JITCustomerStatus | _JITCustomerStatus | |||
| _JITDeliverySplitCriteria | _JITDeliverySplitCriteria | |||
| _JITDelivConfIsUsed | _JITDelivConfIsUsed | |||
| _JITDelivConfForReorder | _JITDelivConfForReorder | |||
| _JITCustSupplyAreaInfo | _JITCustSupplyAreaInfo |
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_JITCustData.
-- 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_JITCustData AS
SELECT
CustomerUUID,
ShipToParty,
JITCustomerStatus,
IsJITRelevant,
CreationDateTime,
CreatedByUser,
LastChangeDateTime,
LastChangedByUser,
DaysForIntJITNumberGeneration,
cast ('X' as sdraft_is_active preserving type ) AS IsActiveEntity,
JITDeliveryHdrSplitCriterion,
JITDeliveryItemSplitCriterion,
JITSequenceNumberProfileID,
JITDelivHdrSpltCritrnForPckg,
JITDelivConfIsUsed,
JITDelivConfForReorder
FROM I_JITCustomer
LEFT OUTER JOIN I_JITCustSupplyAreaData AS _JITCustSupplyAreaData ON CustomerUUID = _JITCustSupplyAreaData.CustomerUUID -- association [0..*]
LEFT OUTER JOIN I_JITCustExtStatusData AS _JITCustExtStatusData ON CustomerUUID = _JITCustExtStatusData.CustomerUUID -- association [0..*]
LEFT OUTER JOIN I_JITCustReferenceTypeData AS _JITCustReferenceTypeData ON CustomerUUID = _JITCustReferenceTypeData.CustomerUUID -- association [0..*]
LEFT OUTER JOIN I_JITCustSupplyAreaInfo AS _JITCustSupplyAreaInfo ON CustomerUUID = _JITCustSupplyAreaInfo.CustomerUUID -- 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