I_ShippingPoint

DDL: I_SHIPPINGPOINT SQL: ISDSHIPPINGPNT Type: view BASIC

Shipping Point

I_ShippingPoint (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Shipping Point · Supply Chain

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

SAP API Hub

StateC1
Line of BusinessSupply Chain
Application ComponentLE-SHP-GF
CapabilitiesData Source in SQL Select, Data Source for Defining CDS Entities, Analytical Dimension
PackageSupply Chain for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides the prerequisites for answering the following business question:</p> <ul> <li><p>What are the available shipping points?</p></li> <li><p>Are the delivery items in this shipping point subject to picking confirmation before I can post goods issue?</p></li> </ul>

Documentation

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 (17)

NameValueLevelField
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey ShippingPoint view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Shipping Point view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #CHECK view
AbapCatalog.sqlViewName ISDSHIPPINGPNT view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.sapObjectNodeType.name ShippingPoint view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY ShippingPoint vstel Shipping Point / Receiving Point
ActiveDepartureCountry aland Departure Country/Region (from which the goods are sent)
AddressID adrnr Sold-To Address
PickingConfirmation koqui Subject to Pick Confirmation
LoadingTimeWorkHoursInMinutes Loading Time Working Hours in Minutes
PickPackTimeWorkHoursInMinutes Pick and Pack Time Working Hours in Min
_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_ShippingPoint.
-- 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: ISDSHIPPINGPNT

CREATE VIEW I_ShippingPoint AS
SELECT
  vstel AS ShippingPoint,
  aland AS ActiveDepartureCountry,
  adrnr AS AddressID,
  koqui AS PickingConfirmation,
  cast(floor(division(loadtn,10000,4))*60 + division(loadtn - floor(division(loadtn,10000,4))*10000,100,0) as le_loadtn_min) AS LoadingTimeWorkHoursInMinutes,
  cast(floor(division(pipatn,10000,4))*60 + division(pipatn - floor(division(pipatn,10000,4))*10000,100,0) as le_pipatn_min) AS PickPackTimeWorkHoursInMinutes
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]
;