I_ShippingPointVH

DDL: I_SHIPPINGPOINTVH SQL: ISP__VH3 Type: view BASIC Package: VDM_LE_SHP_COMMON

Shipping Point

I_ShippingPointVH is a Basic CDS View that provides data about "Shipping Point" in SAP S/4HANA. It reads from 1 data source (tvst) and exposes 7 fields with key field ShippingPoint. It has 2 associations to related views. Part of development package VDM_LE_SHP_COMMON.

Data Sources (1)

SourceAliasJoin Type
tvst tvst from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_ShippingPointText _Text $projection.ShippingPoint = _Text.ShippingPoint
[0..1] I_Country _ActiveDepartureCountry $projection.ActiveDepartureCountry = _ActiveDepartureCountry.Country

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName ISP__VH3 view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey ShippingPoint view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Shipping Point view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
Search.searchable true view
Consumption.ranked true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ShippingPoint vstel ShpPtDeparture
ActiveDepartureCountry aland Dep. Ctry/Reg.
AddressID adrnr Sold-To Address
PickingConfirmation koqui Pick Confirmat.
ConfigDeprecationCode configdeprecationcode Validity
_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 I_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: ISP__VH3

CREATE VIEW I_ShippingPointVH AS
SELECT
  vstel AS ShippingPoint,
  aland AS ActiveDepartureCountry,
  adrnr AS AddressID,
  koqui AS PickingConfirmation,
  ConfigDeprecationCode
FROM tvst
LEFT OUTER JOIN I_ShippingPointText AS _Text ON ShippingPoint = _Text.ShippingPoint  -- association [0..*]
LEFT OUTER JOIN I_Country AS _ActiveDepartureCountry ON ActiveDepartureCountry = _ActiveDepartureCountry.Country  -- association [0..1]
;