C_JITCustSupplyAreaVH

DDL: C_JITCUSTSUPPLYAREAVH Type: view_entity CONSUMPTION Package: NJIT_CORE

Value help for Customer Supply Area

C_JITCustSupplyAreaVH is a Consumption CDS View that provides data about "Value help for Customer Supply Area" in SAP S/4HANA. It reads from 1 data source (I_JITCustomerSupplyArea) and exposes 9 fields with key field SupplyAreaUUID. It has 1 association to related views. It is exposed through 1 OData service (NJIT_UI_JITSUPPLYCONTROL). Part of development package NJIT_CORE.

Data Sources (1)

SourceAliasJoin Type
I_JITCustomerSupplyArea I_JITCustomerSupplyArea from

Associations (1)

CardinalityTargetAliasCondition
[1..1] C_JITCustomerValueHelp _JITCustomerValueHelp $projection.ShipToParty = _JITCustomerValueHelp.Customer

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
Consumption.ranked true view
EndUserText.label Value help for Customer Supply Area view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey SupplyAreaUUID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
Search.searchable true view
VDM.viewType #CONSUMPTION view

OData Services (1)

ServiceBindingVersionContractRelease
NJIT_UI_JITSUPPLYCONTROL

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY SupplyAreaUUID SupplyAreaUUID NodeID
CustomerUUID CustomerUUID NodeID
ShipToParty ShipToParty Ship-To Party (obsolete)
CustSupplyArea CustSupplyArea Cust. Supply Area
SupplyAreaDesc
UnloadingPointName UnloadingPointName Unloading Point Name
_JITCustomerValueHelp _JITCustomerValueHelp
_Customer I_JITCustomerSupplyArea _Customer
_JITCustomer _JITCustomer

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_JITCustSupplyAreaVH.
-- 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.

CREATE VIEW C_JITCustSupplyAreaVH AS
SELECT
  SupplyAreaUUID,
  CustomerUUID,
  ShipToParty,
  CustSupplyArea,
  _JITCustomerSupplyAreaDesc[1:Language = $session.system_language].SupplyAreaDesc AS SupplyAreaDesc,
  UnloadingPointName,
  I_JITCustomerSupplyArea._Customer AS _Customer
FROM I_JITCustomerSupplyArea
LEFT OUTER JOIN C_JITCustomerValueHelp AS _JITCustomerValueHelp ON ShipToParty = _JITCustomerValueHelp.Customer  -- association [1..1]
;