I_SummarizedJITCallOutput

DDL: I_SUMMARIZEDJITCALLOUTPUT SQL: ISUMJITCALLOP Type: view COMPOSITE Package: LAPA_OM

Summarized JIT Call Output

I_SummarizedJITCallOutput is a Composite CDS View that provides data about "Summarized JIT Call Output" in SAP S/4HANA. It reads from 1 data source (I_SummarizedJITCall) and exposes 11 fields with key field JITCallNumber. It has 3 associations to related views. Part of development package LAPA_OM.

Data Sources (1)

SourceAliasJoin Type
I_SummarizedJITCall SummarizedJITCall from

Associations (3)

CardinalityTargetAliasCondition
[0..*] I_SummarizedJITCallItemOutput _SummarizedJITCallItemOutput $projection.JITCallNumber = _SummarizedJITCallItemOutput.JITCallNumber
[0..1] I_Supplier _Supplier $projection.OutputPartnerForSumzdJITCall = _Supplier.Supplier
[1..1] I_Plant _Plant $projection.Plant = _Plant.Plant

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ISUMJITCALLOP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Summarized JIT Call Output view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey JITCallNumber view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view
AccessControl.personalData.blocking #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #COMPOSITE view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY JITCallNumber I_SummarizedJITCall JITCallNumber JIT Call Number
Supplier I_SummarizedJITCall Supplier Supplier
Plant I_SummarizedJITCall Plant Valuation Area
OutputPartnerForSumzdJITCall OutputPartnerForSumzdJITCall Output partner
SupplierLanguage _Supplier SupplierLanguage
_SummarizedJITCallItemOutput _SummarizedJITCallItemOutput
AddressID _Plant AddressID Ship-to address
_Supplier _Supplier
_SupplierCompanyByPlant _SupplierCompanyByPlant
_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 I_SummarizedJITCallOutput.
-- 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: ISUMJITCALLOP

CREATE VIEW I_SummarizedJITCallOutput AS
SELECT
  SummarizedJITCall.JITCallNumber AS JITCallNumber,
  SummarizedJITCall.Supplier AS Supplier,
  SummarizedJITCall.Plant AS Plant,
  OutputPartnerForSumzdJITCall,
  _Supplier.SupplierLanguage AS SupplierLanguage,
  _Plant.AddressID AS AddressID
FROM I_SummarizedJITCall AS SummarizedJITCall
LEFT OUTER JOIN I_SummarizedJITCallItemOutput AS _SummarizedJITCallItemOutput ON JITCallNumber = _SummarizedJITCallItemOutput.JITCallNumber  -- association [0..*]
LEFT OUTER JOIN I_Supplier AS _Supplier ON OutputPartnerForSumzdJITCall = _Supplier.Supplier  -- association [0..1]
LEFT OUTER JOIN I_Plant AS _Plant ON Plant = _Plant.Plant  -- association [1..1]
;