C_ShippingPointVH

DDL: C_SHIPPINGPOINTVH SQL: CSHIPPOINTVH Type: view CONSUMPTION

Shipping Point Value Help

C_ShippingPointVH is a Consumption CDS View that provides data about "Shipping Point Value Help" in SAP S/4HANA. It reads from 1 data source (I_ShippingPoint) and exposes 5 fields with key field ShippingPoint.

Data Sources (1)

SourceAliasJoin Type
I_ShippingPoint ShippingPoint from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CSHIPPOINTVH view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Shipping Point Value Help view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
AccessControl.personalData.blocking #REQUIRED view
Search.searchable true view
Consumption.ranked true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ShippingPoint ShippingPoint Shipping Point
ActiveDepartureCountry ActiveDepartureCountry Dep. Ctry/Reg.
ShippingPointName
_Text _Text
_ActiveDepartureCountry _ActiveDepartureCountry

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_ShippingPointVH.
-- 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: CSHIPPOINTVH

CREATE VIEW C_ShippingPointVH AS
SELECT
  ShippingPoint,
  ActiveDepartureCountry,
  cast(ShippingPoint._Text[1: Language=$session.system_language].ShippingPointName as bezei30) AS ShippingPointName
FROM I_ShippingPoint AS ShippingPoint
;