C_SumzdJITCallOutputParamDetn

DDL: C_SUMZDJITCALLOUTPUTPARAMDETN SQL: CSUMJITCALLOPD Type: view CONSUMPTION Package: LAPA_OM

Summarized JIT Call Output Parameter Determination

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

Data Sources (1)

SourceAliasJoin Type
I_SummarizedJITCall I_SummarizedJITCall from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_Plant _Plant $projection.Plant = _Plant.Plant

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName CSUMJITCALLOPD view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Summarized JIT Call Output Parameter Determination view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY JITCallNumber JITCallNumber JIT Call Number
Supplier Supplier Supplier
OutputPartnerForSumzdJITCall Output partner
JITCallProfile JITCallProfile JIT Call Prof.
Plant Plant Valuation Area
PlantName _Plant PlantName Plant Name
_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 C_SumzdJITCallOutputParamDetn.
-- 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: CSUMJITCALLOPD

CREATE VIEW C_SumzdJITCallOutputParamDetn AS
SELECT
  JITCallNumber,
  Supplier,
  cast(OutputPartnerForSumzdJITCall as vdm_pabnpl preserving type) AS OutputPartnerForSumzdJITCall,
  JITCallProfile,
  Plant,
  _Plant.PlantName AS PlantName
FROM I_SummarizedJITCall
LEFT OUTER JOIN I_Plant AS _Plant ON Plant = _Plant.Plant  -- association [1..1]
;