C_JITCustAssemblyLocationVH

DDL: C_JITCUSTASSEMBLYLOCATIONVH Type: view_entity CONSUMPTION Package: NJIT_COMMON

JIT Assembly Location

C_JITCustAssemblyLocationVH is a Consumption CDS View that provides data about "JIT Assembly Location" in SAP S/4HANA. It reads from 1 data source (I_JITCustomerSupplyArea) and exposes 7 fields with key field SupplyAreaUUID. It has 1 association to related views. Part of development package NJIT_COMMON.

Data Sources (1)

SourceAliasJoin Type
I_JITCustomerSupplyArea I_JITCustomerSupplyArea from

Associations (1)

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

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label JIT Assembly Location view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey SupplyAreaUUID view
Search.searchable true view
Consumption.ranked true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY SupplyAreaUUID SupplyAreaUUID NodeID
CustomerUUID CustomerUUID NodeID
ShipToParty ShipToParty Ship-To Party (obsolete)
CustAssemblyLoc CustAssemblyLoc Assembly Location
_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_JITCustAssemblyLocationVH.
-- 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_JITCustAssemblyLocationVH AS
SELECT
  SupplyAreaUUID,
  CustomerUUID,
  ShipToParty,
  CustAssemblyLoc,
  I_JITCustomerSupplyArea._Customer AS _Customer
FROM I_JITCustomerSupplyArea
LEFT OUTER JOIN C_JITCustomerValueHelp AS _JITCustomerValueHelp ON ShipToParty = _JITCustomerValueHelp.Customer  -- association [1..1]
;