C_SumzdJITCallDelivAddrOutput

DDL: C_SUMZDJITCALLDELIVADDROUTPUT SQL: CJITCALLDELADROP Type: view CONSUMPTION Package: LAPA_OM

Summarized JIT Call Delivery Address

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

Data Sources (1)

SourceAliasJoin Type
I_SummarizedJITCallOutput I_SummarizedJITCallOutput from

Associations (6)

CardinalityTargetAliasCondition
[1..1] I_Plant _Plant $projection.Plant = _Plant.Plant
[1..1] C_SummarizedJITCallOutput _SumzdJITCallOutput $projection.JITCallNumber = _SumzdJITCallOutput.JITCallNumber
[0..1] I_AddrCurDefaultEmailAddress _AddressEmailAddress _AddressEmailAddress.AddressID = I_SummarizedJITCallOutput.AddressID and _AddressEmailAddress.AddressPersonID is initial
[0..1] I_AddrCurDfltLandlinePhoneNmbr _AddressPhoneNmbrAddress _AddressPhoneNmbrAddress.AddressID = I_SummarizedJITCallOutput.AddressID and _AddressPhoneNmbrAddress.AddressPersonID is initial
[0..1] I_AddrCurDefaultFaxNumber _AddressFaxNumberAddress _AddressFaxNumberAddress.AddressID = I_SummarizedJITCallOutput.AddressID and _AddressFaxNumberAddress.AddressPersonID is initial
[0..1] I_OrganizationAddress _OrganizationAddress _OrganizationAddress.AddressID = I_SummarizedJITCallOutput.AddressID and _OrganizationAddress.AddressRepresentationCode is initial and _OrganizationAddress.AddressPersonID is initial

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CJITCALLDELADROP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Summarized JIT Call Delivery Address view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey JITCallNumber view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #CONSUMPTION view

Fields (33)

KeyFieldSource TableSource FieldDescription
KEY JITCallNumber JITCallNumber
Plant Plant Valuation Area
PlantName _Plant PlantName Plant Name
PlantPhoneNumber _AddressPhoneNmbrAddress PhoneAreaCodeSubscriberNumber Telephone
PlantPhoneNumberExtension _AddressPhoneNmbrAddress PhoneExtensionNumber Extension
PlantFaxNumber _AddressFaxNumberAddress FaxAreaCodeSubscriberNumber Fax
PlantFaxNumberExtension _AddressFaxNumberAddress FaxExtensionNumber Extension
PlantStreetName _OrganizationAddress StreetName Text
PlantPostalCode _OrganizationAddress PostalCode Postal Code
PlantCityName _OrganizationAddress CityName Name
PlantCountry _OrganizationAddress Country Venue: Ctry/Reg
PlantRegion _OrganizationAddress Region Venue Region
PlantEmailAddress _AddressEmailAddress EmailAddress E-Mail Address
UnloadingPointName
MRPControllerName
MRPControllerPhoneNumber
SumzdJITCallPlndDelivDate
SumzdJITCallPlndDelivTime
PlantAddressLine1Text
PlantAddressLine2Text
PlantAddressLine3Text
PlantAddressLine4Text
PlantAddressLine5Text
PlantAddressLine6Text
PlantAddressLine7Text
PlantAddressLine8Text
Supplier Supplier Supplier
OutputPartnerForSumzdJITCall OutputPartnerForSumzdJITCall
_SumzdJITCallOutput _SumzdJITCallOutput
_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_SumzdJITCallDelivAddrOutput.
-- 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: CJITCALLDELADROP

CREATE VIEW C_SumzdJITCallDelivAddrOutput AS
SELECT
  JITCallNumber,
  Plant,
  _Plant.PlantName AS PlantName,
  _AddressPhoneNmbrAddress.PhoneAreaCodeSubscriberNumber AS PlantPhoneNumber,
  _AddressPhoneNmbrAddress.PhoneExtensionNumber AS PlantPhoneNumberExtension,
  _AddressFaxNumberAddress.FaxAreaCodeSubscriberNumber AS PlantFaxNumber,
  _AddressFaxNumberAddress.FaxExtensionNumber AS PlantFaxNumberExtension,
  _OrganizationAddress.StreetName AS PlantStreetName,
  _OrganizationAddress.PostalCode AS PlantPostalCode,
  _OrganizationAddress.CityName AS PlantCityName,
  _OrganizationAddress.Country AS PlantCountry,
  _OrganizationAddress.Region AS PlantRegion,
  _AddressEmailAddress.EmailAddress AS PlantEmailAddress,
  cast('' as ablad) AS UnloadingPointName,
  cast('' as dsnam) AS MRPControllerName,
  cast('' as dstel) AS MRPControllerPhoneNumber,
  cast('' as pk_requirement_date_form ) AS SumzdJITCallPlndDelivDate,
  cast('' as pabluz) AS SumzdJITCallPlndDelivTime,
  cast('' as lines) AS PlantAddressLine1Text,
  cast('' as lines) AS PlantAddressLine2Text,
  cast('' as lines) AS PlantAddressLine3Text,
  cast('' as lines) AS PlantAddressLine4Text,
  cast('' as lines) AS PlantAddressLine5Text,
  cast('' as lines) AS PlantAddressLine6Text,
  cast('' as lines) AS PlantAddressLine7Text,
  cast('' as lines) AS PlantAddressLine8Text,
  Supplier,
  OutputPartnerForSumzdJITCall
FROM I_SummarizedJITCallOutput
LEFT OUTER JOIN I_Plant AS _Plant ON Plant = _Plant.Plant  -- association [1..1]
LEFT OUTER JOIN C_SummarizedJITCallOutput AS _SumzdJITCallOutput ON JITCallNumber = _SumzdJITCallOutput.JITCallNumber  -- association [1..1]
LEFT OUTER JOIN I_AddrCurDefaultEmailAddress AS _AddressEmailAddress ON _AddressEmailAddress.AddressID = I_SummarizedJITCallOutput.AddressID AND _AddressEmailAddress.AddressPersonID is initial  -- association [0..1]
LEFT OUTER JOIN I_AddrCurDfltLandlinePhoneNmbr AS _AddressPhoneNmbrAddress ON _AddressPhoneNmbrAddress.AddressID = I_SummarizedJITCallOutput.AddressID AND _AddressPhoneNmbrAddress.AddressPersonID is initial  -- association [0..1]
LEFT OUTER JOIN I_AddrCurDefaultFaxNumber AS _AddressFaxNumberAddress ON _AddressFaxNumberAddress.AddressID = I_SummarizedJITCallOutput.AddressID AND _AddressFaxNumberAddress.AddressPersonID is initial  -- association [0..1]
LEFT OUTER JOIN I_OrganizationAddress AS _OrganizationAddress ON _OrganizationAddress.AddressID = I_SummarizedJITCallOutput.AddressID AND _OrganizationAddress.AddressRepresentationCode is initial AND _OrganizationAddress.AddressPersonID is initial  -- association [0..1]
;