I_JITCallDelivery

DDL: I_JITCALLDELIVERY SQL: IPPJITCLDLVR Type: view BASIC

JIT Call Link to Delivery

I_JITCallDelivery (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Manufacturing

I_JITCallDelivery is a Basic CDS View that provides data about "JIT Call Link to Delivery" in SAP S/4HANA. It reads from 1 data source (pabasn) and exposes 15 fields with key fields JITCallNumber, JITCallItemNumber, DeliveryDocument, DeliveryDocumentItem. It has 6 associations to related views.

SAP API Hub

StateC1
Line of BusinessManufacturing
Application ComponentPP-KAB-VDM
CapabilitiesData Source for Defining CDS Entities, Data Source in SQL Select, Association Target for Defining CDS Entities
PackageManufacturing for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides access to delivery documents and items in JIT calls. The view combines data for summarized and sequenced JIT calls. </p> <p>To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
pabasn pabasn from

Associations (6)

CardinalityTargetAliasCondition
[0..1] I_SummarizedJITCall _SummarizedJITCall $projection.JITCallNumber = _SummarizedJITCall.JITCallNumber
[0..1] I_SummarizedJITCallItem _SummarizedJITCallItem $projection.JITCallNumber = _SummarizedJITCallItem.JITCallNumber and $projection.JITCallItemNumber = _SummarizedJITCallItem.JITCallItemNumber
[0..1] I_DeliveryDocument _DeliveryDocument $projection.DeliveryDocument = _DeliveryDocument.DeliveryDocument
[0..1] I_DeliveryDocumentItem _DeliveryDocumentItem $projection.DeliveryDocument = _DeliveryDocumentItem.DeliveryDocument and $projection.DeliveryDocumentItem = _DeliveryDocumentItem.DeliveryDocumentItem
[0..1] I_Supplier _Supplier $projection.supplier = _Supplier.Supplier
[0..1] I_SupplierCompanyByPlant _SupplierCompanyByPlant $projection.supplier = _SupplierCompanyByPlant.Supplier and $projection.plant = _SupplierCompanyByPlant.Plant

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IPPJITCLDLVR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label JIT Call Link to Delivery view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY JITCallNumber pabnum JIT Call Number
KEY JITCallItemNumber Call Item Number
KEY DeliveryDocument vbeln SD Sched. Agmt
KEY DeliveryDocumentItem posnr Delivery Item
JITCallGoodsReceiptQuantity pabavm Goods Receipt Qty for a JIT Call
BaseUnit _SummarizedJITCallItem BaseUnit Base Unit of Measure
JITCallGoodsReceiptIsPosted partgr Goods Receipt Posted for Summarized JIT Call re. Delivery
Plant _SummarizedJITCall Plant Valuation Area
Supplier _DeliveryDocument Supplier Supplier
_Supplier _Supplier
_SupplierCompanyByPlant _SupplierCompanyByPlant
_SummarizedJITCall _SummarizedJITCall
_SummarizedJITCallItem _SummarizedJITCallItem
_DeliveryDocument _DeliveryDocument
_DeliveryDocumentItem _DeliveryDocumentItem

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_JITCallDelivery.
-- 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.
-- SQL view name: IPPJITCLDLVR

CREATE VIEW I_JITCallDelivery AS
SELECT
  pabnum AS JITCallNumber,
  cast(pabpos as njit_call_item_num preserving type) AS JITCallItemNumber,
  vbeln AS DeliveryDocument,
  posnr AS DeliveryDocumentItem,
  pabavm AS JITCallGoodsReceiptQuantity,
  _SummarizedJITCallItem.BaseUnit AS BaseUnit,
  partgr AS JITCallGoodsReceiptIsPosted,
  _SummarizedJITCall.Plant AS Plant,
  _DeliveryDocument.Supplier AS Supplier
FROM pabasn
LEFT OUTER JOIN I_SummarizedJITCall AS _SummarizedJITCall ON JITCallNumber = _SummarizedJITCall.JITCallNumber  -- association [0..1]
LEFT OUTER JOIN I_SummarizedJITCallItem AS _SummarizedJITCallItem ON JITCallNumber = _SummarizedJITCallItem.JITCallNumber AND JITCallItemNumber = _SummarizedJITCallItem.JITCallItemNumber  -- association [0..1]
LEFT OUTER JOIN I_DeliveryDocument AS _DeliveryDocument ON DeliveryDocument = _DeliveryDocument.DeliveryDocument  -- association [0..1]
LEFT OUTER JOIN I_DeliveryDocumentItem AS _DeliveryDocumentItem ON DeliveryDocument = _DeliveryDocumentItem.DeliveryDocument AND DeliveryDocumentItem = _DeliveryDocumentItem.DeliveryDocumentItem  -- association [0..1]
LEFT OUTER JOIN I_Supplier AS _Supplier ON supplier = _Supplier.Supplier  -- association [0..1]
LEFT OUTER JOIN I_SupplierCompanyByPlant AS _SupplierCompanyByPlant ON supplier = _SupplierCompanyByPlant.Supplier AND plant = _SupplierCompanyByPlant.Plant  -- association [0..1]
;