I_JITCallDocRefBasic

DDL: I_JITCALLDOCREFBASIC Type: view_entity BASIC Package: NJIT_MODEL_INBOUNDCALL

JIT Call Document Reference

I_JITCallDocRefBasic is a Basic CDS View that provides data about "JIT Call Document Reference" in SAP S/4HANA. It reads from 1 data source (njit_call_d_dref) and exposes 16 fields with key field JITDocRefUUID. It has 3 associations to related views. Part of development package NJIT_MODEL_INBOUNDCALL.

Data Sources (1)

SourceAliasJoin Type
njit_call_d_dref njit_call_d_dref from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_DeliveryDocumentItem _DeliveryDocumentItem $projection.BusinessTransactionDocument = _DeliveryDocumentItem.DeliveryDocument and $projection.BusinessTransactionDocItem = _DeliveryDocumentItem.DeliveryDocumentItem and $projection.BusinessTransactionDocType = _DeliveryDocumentItem.SDDocumentCategory
[0..*] I_JITCallCompMaterialBasic _JITCallCompMaterialBasic $projection.JITCallComponentUUID = _JITCallCompMaterialBasic.JITCallComponentUUID
[0..1] I_JITCallHeaderBasic _JITCallHeaderBasic $projection.JITHeaderUUID = _JITCallHeaderBasic.JITHeaderUUID and $projection.InternalJITCallNumber = _JITCallHeaderBasic.InternalJITCallNumber

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label JIT Call Document Reference view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
VDM.viewType #BASIC view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY JITDocRefUUID db_key UUID
JITHeaderUUID root_key UUID
JITCallComponentUUID parent_key UUID
InternalJITCallNumber int_call_num JIT Call Number
JITCallItemNumber call_item_num Call Item Number
BusinessTransactionDocType btd_type_code BTD Type Code
BusinessTransactionDocument btd_id External FA
BusinessTransactionDocItem btd_item_id BTD Item ID
BusinessTransactionDocStatus btd_status BTD Status
LogicalSystemID logsys Source system
LastChangeDateTime lchg_date_time Time Stamp
DataAgingObject _dataaging Data Aging
CompGrpNumber comp_grp_num Component Group No.
_DeliveryDocumentItem _DeliveryDocumentItem
_JITCallHeaderBasic _JITCallHeaderBasic
_JITCallCompMaterialBasic _JITCallCompMaterialBasic

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_JITCallDocRefBasic.
-- 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_JITCallDocRefBasic AS
SELECT
  db_key AS JITDocRefUUID,
  root_key AS JITHeaderUUID,
  parent_key AS JITCallComponentUUID,
  int_call_num AS InternalJITCallNumber,
  call_item_num AS JITCallItemNumber,
  btd_type_code AS BusinessTransactionDocType,
  btd_id AS BusinessTransactionDocument,
  btd_item_id AS BusinessTransactionDocItem,
  btd_status AS BusinessTransactionDocStatus,
  logsys AS LogicalSystemID,
  lchg_date_time AS LastChangeDateTime,
  comp_grp_num AS CompGrpNumber
FROM njit_call_d_dref
LEFT OUTER JOIN I_DeliveryDocumentItem AS _DeliveryDocumentItem ON BusinessTransactionDocument = _DeliveryDocumentItem.DeliveryDocument AND BusinessTransactionDocItem = _DeliveryDocumentItem.DeliveryDocumentItem AND BusinessTransactionDocType = _DeliveryDocumentItem.SDDocumentCategory  -- association [0..1]
LEFT OUTER JOIN I_JITCallCompMaterialBasic AS _JITCallCompMaterialBasic ON JITCallComponentUUID = _JITCallCompMaterialBasic.JITCallComponentUUID  -- association [0..*]
LEFT OUTER JOIN I_JITCallHeaderBasic AS _JITCallHeaderBasic ON JITHeaderUUID = _JITCallHeaderBasic.JITHeaderUUID AND InternalJITCallNumber = _JITCallHeaderBasic.InternalJITCallNumber  -- association [0..1]
;