C_JITCustSupplyAreaDescTP

DDL: C_JITCUSTSUPPLYAREADESCTP SQL: CJITSADESCTP Type: view CONSUMPTION

Consumption view for JIT SA Desc

C_JITCustSupplyAreaDescTP is a Consumption CDS View that provides data about "Consumption view for JIT SA Desc" in SAP S/4HANA. It reads from 1 data source (I_JITCustSupplyAreaDescTP) and exposes 9 fields with key fields SupplyAreaUUID, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_JITCustSupplyAreaDescTP I_JITCustSupplyAreaDescTP from

Associations (2)

CardinalityTargetAliasCondition
[1..1] C_JITCustHeaderTP _JITCustHeaderTP $projection.CustomerUUID = _JITCustHeaderTP.CustomerUUID
[1..1] C_JITCustSupplyAreaTP _JITCustSupplyAreaTP $projection.SupplyAreaUUID = _JITCustSupplyAreaTP.SupplyAreaUUID

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName CJITSADESCTP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Consumption view for JIT SA Desc view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.type #INHERITED view
ObjectModel.transactionalProcessingDelegated true view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.dataCategory #TEXT 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.
_JITCustSupplyAreaTP _JITCustSupplyAreaTP
_JITCustHeaderTP _JITCustHeaderTP
_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 C_JITCustSupplyAreaDescTP.
-- 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: CJITSADESCTP

CREATE VIEW C_JITCustSupplyAreaDescTP AS
SELECT
  SupplyAreaUUID,
  Language,
  CustomerUUID,
  ShipToParty,
  CustSupplyArea,
  SupplyAreaDesc
FROM I_JITCustSupplyAreaDescTP
LEFT OUTER JOIN C_JITCustHeaderTP AS _JITCustHeaderTP ON CustomerUUID = _JITCustHeaderTP.CustomerUUID  -- association [1..1]
LEFT OUTER JOIN C_JITCustSupplyAreaTP AS _JITCustSupplyAreaTP ON SupplyAreaUUID = _JITCustSupplyAreaTP.SupplyAreaUUID  -- association [1..1]
;