I_JITCustData

DDL: I_JITCUSTDATA Type: view_entity COMPOSITE Package: NJIT_BO_CUSTOMER

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)

SourceAliasJoin Type
I_JITCustomer I_JITCustomer from

Associations (4)

CardinalityTargetAliasCondition
[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)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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]
;