C_JITCallDocRefObjPg
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)
| Source | Alias | Join Type |
|---|---|---|
| I_JITInbCallDocReference | I_JITInbCallDocReference | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
;
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