C_JITOutbSqncUnloadingPointVH

DDL: C_JITOUTBSQNCUNLOADINGPOINTVH Type: view_entity CONSUMPTION

Unloading Point

C_JITOutbSqncUnloadingPointVH is a Consumption CDS View that provides data about "Unloading Point" in SAP S/4HANA. It reads from 1 data source (I_JITSalesAreaPartnerData) and exposes 13 fields with key fields CustomerPartnerDescription, ActiveSupplier, UnloadingPointName, ShipToParty, SalesOrganization.

Data Sources (1)

SourceAliasJoin Type
I_JITSalesAreaPartnerData I_JITSalesAreaPartnerData from

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Unloading Point view
VDM.viewType #CONSUMPTION view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
Search.searchable true view
ObjectModel.representativeKey CustomerPartnerDescription view
ObjectModel.dataCategory #VALUE_HELP view
AccessControl.personalData.blocking #REQUIRED view
Consumption.ranked true view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY CustomerPartnerDescription CustomerPartnerDescription Partner Description of Ship-To Party
KEY ActiveSupplier Partner Description of Supplier
KEY UnloadingPointName UnloadingPointName Unloading Point
KEY ShipToParty ShipToParty Ship-To Party
KEY SalesOrganization SalesOrganization Sales Organization
KEY DistributionChannel DistributionChannel Distribution Channel
KEY Division Division Division
SoldToParty SoldToParty Sold-To Party
OrganizationBPName1 _Customer OrganizationBPName1 Name 1
OrganizationBPName2 _Customer OrganizationBPName2 Name 2
CustomerName _Customer CustomerName Ship-To Party Description
_Customer _Customer
_SoldToParty _SoldToParty

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_JITOutbSqncUnloadingPointVH.
-- 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_JITOutbSqncUnloadingPointVH AS
SELECT
  CustomerPartnerDescription,
  cast( ActiveSupplier as abap.char( 10 )) AS ActiveSupplier,
  UnloadingPointName,
  ShipToParty,
  SalesOrganization,
  DistributionChannel,
  Division,
  SoldToParty,
  _Customer.OrganizationBPName1 AS OrganizationBPName1,
  _Customer.OrganizationBPName2 AS OrganizationBPName2,
  _Customer.CustomerName AS CustomerName
FROM I_JITSalesAreaPartnerData
;