C_JITCallDocRefObjPg

DDL: C_JITCALLDOCREFOBJPG Type: view_entity CONSUMPTION Package: NJIT_APP_REUSE_LIBRARY

JIT Call Doc Object Page

C_JITCallDocRefObjPg is a Consumption CDS View that provides data about "JIT Call Doc Object Page" in SAP S/4HANA. It reads from 1 data source (I_JITInbCallDocReference) and exposes 29 fields with key fields InternalJITCallNumber, CompGrpNumber, JITCallItemNumber, BusinessTransactionDocument, BusinessTransactionDocItem. Part of development package NJIT_APP_REUSE_LIBRARY.

Data Sources (1)

SourceAliasJoin Type
I_JITInbCallDocReference I_JITInbCallDocReference from

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
Analytics.technicalName CJITCALLDOCOBJPG view
EndUserText.label JIT Call Doc Object Page view
ObjectModel.representativeKey BusinessTransactionDocument view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
UI.headerInfo.typeNamePlural Items view
UI.headerInfo.title.value BusinessTransactionDocument view
UI.headerInfo.title.label Items view
VDM.viewType #CONSUMPTION view

Fields (29)

KeyFieldSource TableSource FieldDescription
KEY InternalJITCallNumber InternalJITCallNumber JIT Call Number
KEY CompGrpNumber CompGrpNumber Component Group No.
KEY JITCallItemNumber JITCallItemNumber Call Item Number
KEY BusinessTransactionDocument BusinessTransactionDocument BTD ID
KEY BusinessTransactionDocItem BusinessTransactionDocItem BTD Item ID
OutboundDelivery Outbound Delivery
JITHeaderUUID JITHeaderUUID NodeID
BusinessTransactionDocType BusinessTransactionDocType BTD Type Code
DeliveryDocumentItemText _DeliveryDocumentItem DeliveryDocumentItemText Component Material
DeliveryDocumentItem Item
ActualDeliveryQuantity _DeliveryDocumentItem ActualDeliveryQuantity Base quantity
DeliveryQuantityUnit _DeliveryDocumentItem DeliveryQuantityUnit Unit of measure
OverallPickingStatus Picking Status
OverallGoodsMovementStatus
OverallDelivReltdBillgStatus
OverallPickingStatusDesc
OverallGoodsMovementStatusDesc
OverallDelivReltdBillgStsDesc
DocumentDate
PlannedGoodsIssueDate
ActualGoodsMovementDateTime
HigherLvlItmOfBatSpltItm _DeliveryDocumentItem HigherLvlItmOfBatSpltItm
Batch
_DeliveryDocumentItem _DeliveryDocumentItem
_OverallPickingStatus
_OverallGoodsMovementStatus
_OverallDelivReltdBillgStatus
_DeliveryQuantityUnit _DeliveryDocumentItem _DeliveryQuantityUnit
_JITInboundCall _JITInboundCall

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 C_JITCallDocRefObjPg.
-- 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 C_JITCallDocRefObjPg AS
SELECT
  InternalJITCallNumber,
  CompGrpNumber,
  JITCallItemNumber,
  BusinessTransactionDocument,
  BusinessTransactionDocItem,
  cast( BusinessTransactionDocument as vbeln ) AS OutboundDelivery,
  JITHeaderUUID,
  BusinessTransactionDocType,
  _DeliveryDocumentItem.DeliveryDocumentItemText AS DeliveryDocumentItemText,
  cast( ltrim(BusinessTransactionDocItem, '0') as posnr ) AS DeliveryDocumentItem,
  _DeliveryDocumentItem.ActualDeliveryQuantity AS ActualDeliveryQuantity,
  _DeliveryDocumentItem.DeliveryQuantityUnit AS DeliveryQuantityUnit,
  _DeliveryDocumentItem._DeliveryDocument.OverallPickingStatus AS OverallPickingStatus,
  _DeliveryDocumentItem._DeliveryDocument.OverallGoodsMovementStatus AS OverallGoodsMovementStatus,
  _DeliveryDocumentItem._DeliveryDocument.OverallDelivReltdBillgStatus AS OverallDelivReltdBillgStatus,
  _DeliveryDocumentItem._DeliveryDocument._OverallPickingStatus._Text[1: Language=$session.system_language].OverallPickingStatusDesc AS OverallPickingStatusDesc,
  _DeliveryDocumentItem._DeliveryDocument._OverallGoodsMovementStatus._Text[1: Language=$session.system_language].OverallGoodsMovementStatusDesc AS OverallGoodsMovementStatusDesc,
  _DeliveryDocumentItem._DeliveryDocument._OverallDelivReltdBillgStatus._Text[1: Language=$session.system_language].OverallDelivReltdBillgStsDesc AS OverallDelivReltdBillgStsDesc,
  _DeliveryDocumentItem._DeliveryDocument.DocumentDate AS DocumentDate,
  _DeliveryDocumentItem._DeliveryDocument.PlannedGoodsIssueDate AS PlannedGoodsIssueDate,
  cast( dats_tims_to_tstmp(_DeliveryDocumentItem._DeliveryDocument.ActualGoodsMovementDate, _DeliveryDocumentItem._DeliveryDocument.ActualGoodsMovementTime, abap_user_timezone($session.user, $session.client, 'NULL'), $session.client, 'NULL') as tzntstmps preserving type ) AS ActualGoodsMovementDateTime,
  _DeliveryDocumentItem.HigherLvlItmOfBatSpltItm AS HigherLvlItmOfBatSpltItm,
  ltrim(_DeliveryDocumentItem.Batch, '0') AS Batch,
  _DeliveryDocumentItem._DeliveryDocument._OverallPickingStatus AS _OverallPickingStatus,
  _DeliveryDocumentItem._DeliveryDocument._OverallGoodsMovementStatus AS _OverallGoodsMovementStatus,
  _DeliveryDocumentItem._DeliveryDocument._OverallDelivReltdBillgStatus AS _OverallDelivReltdBillgStatus,
  _DeliveryDocumentItem._DeliveryQuantityUnit AS _DeliveryQuantityUnit
FROM I_JITInbCallDocReference
;