C_KanbanSumzdJITCallItem

DDL: C_KANBANSUMZDJITCALLITEM Type: view_entity CONSUMPTION

Kanban Summarized JIT Call Item Monitor

C_KanbanSumzdJITCallItem is a Consumption CDS View that provides data about "Kanban Summarized JIT Call Item Monitor" in SAP S/4HANA. It reads from 1 data source (R_KanbanSumzdJITCallItemTP) and exposes 24 fields with key fields JITCallNumber, JITCallItemNumber. It is exposed through 1 OData service (UI_KANBANSUMZDJITCALL_MON).

Data Sources (1)

SourceAliasJoin Type
R_KanbanSumzdJITCallItemTP R_KanbanSumzdJITCallItemTP projection

Annotations (8)

NameValueLevelField
EndUserText.label Kanban Summarized JIT Call Item Monitor view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
Search.searchable true view
Metadata.allowExtensions true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

OData Services (1)

ServiceBindingVersionContractRelease
UI_KANBANSUMZDJITCALL_MON UI_KANBANSUMZDJITCALL_MON V4 C1 NOT_RELEASED

Fields (24)

KeyFieldSource TableSource FieldDescription
KEY JITCallNumber JITCallNumber JIT Call Number
KEY JITCallItemNumber JITCallItemNumber Call Item Number
Product Product Product Sold
ProductName _ProductText ProductName Description
SummarizedJITCallQtyInBaseUnit SummarizedJITCallQtyInBaseUnit Requested Quantity
BaseUnit BaseUnit Unit of Measure
PurchasingDocument PurchasingDocument Scheduling Agreement
PurchasingDocumentItem PurchasingDocumentItem Purchasing Doc. Item
UnloadingPointName UnloadingPointName Unloading Point Name
ProductionSupplyArea ProductionSupplyArea Production Supply Area
SumzdJITCallPlndDelivDateTime SumzdJITCallPlndDelivDateTime Requested Delivery Date
GoodsReceiptIsExisting GoodsReceiptIsExisting Goods Receipt
GoodsReceiptQtyInBaseUnit GoodsReceiptQtyInBaseUnit Goods Receipt Quantity
Batch Batch Batch Number
KanbanControlCycle KanbanControlCycle Kanban Control Cycle
KanbanContainer KanbanContainer Kanban ID
_ProductText _ProductText
Plant SumJITCallItem Plant Valuation Area
Supplier SumJITCallItem Supplier Supplier
_Supplier _Supplier
_SupplierCompanyByPlant _SupplierCompanyByPlant
OutputPartnerForSumzdJITCall SumJITCallItem OutputPartnerForSumzdJITCall
_OutputPartner _OutputPartner
_OutputPartnerCompanyByPlant _OutputPartnerCompanyByPlant

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_KanbanSumzdJITCallItem.
-- 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_KanbanSumzdJITCallItem AS
SELECT
  JITCallNumber,
  JITCallItemNumber,
  Product,
  _ProductText.ProductName AS ProductName,
  SummarizedJITCallQtyInBaseUnit,
  BaseUnit,
  PurchasingDocument,
  PurchasingDocumentItem,
  UnloadingPointName,
  ProductionSupplyArea,
  SumzdJITCallPlndDelivDateTime,
  GoodsReceiptIsExisting,
  GoodsReceiptQtyInBaseUnit,
  Batch,
  KanbanControlCycle,
  KanbanContainer,
  SumJITCallItem.Plant AS Plant,
  SumJITCallItem.Supplier AS Supplier,
  SumJITCallItem.OutputPartnerForSumzdJITCall AS OutputPartnerForSumzdJITCall
FROM R_KanbanSumzdJITCallItemTP
;