I_JITCustSupplyAreaDescData

DDL: I_JITCUSTSUPPLYAREADESCDATA SQL: IJITCSADESCDATA Type: view COMPOSITE

Composite View for Cust SA Desc

I_JITCustSupplyAreaDescData is a Composite CDS View that provides data about "Composite View for Cust SA Desc" in SAP S/4HANA. It reads from 1 data source (I_JITCustomerSupplyAreaDesc) and exposes 9 fields with key fields SupplyAreaUUID, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_JITCustomerSupplyAreaDesc I_JITCustomerSupplyAreaDesc from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_JITCustSupplyAreaData _JITCustSupplyAreaData $projection.SupplyAreaUUID = _JITCustSupplyAreaData.SupplyAreaUUID

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IJITCSADESCDATA view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Composite View for Cust SA Desc view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY SupplyAreaUUID SupplyAreaUUID NodeID
KEY Language Language Report Text Language
CustomerUUID CustomerUUID NodeID
ShipToParty ShipToParty Ship-To Party (obsolete)
CustSupplyArea CustSupplyArea Cust. Supply Area
SupplyAreaDesc SupplyAreaDesc Sup. Area Desc.
_JITCustSupplyAreaData _JITCustSupplyAreaData
_JITCustomerSupplyArea _JITCustomerSupplyArea
_Language _Language

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_JITCustSupplyAreaDescData.
-- 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: IJITCSADESCDATA

CREATE VIEW I_JITCustSupplyAreaDescData AS
SELECT
  SupplyAreaUUID,
  Language,
  CustomerUUID,
  ShipToParty,
  CustSupplyArea,
  SupplyAreaDesc
FROM I_JITCustomerSupplyAreaDesc
LEFT OUTER JOIN I_JITCustSupplyAreaData AS _JITCustSupplyAreaData ON SupplyAreaUUID = _JITCustSupplyAreaData.SupplyAreaUUID  -- association [1..1]
;