I_ShippingPoint

DDL: I_SHIPPINGPOINT SQL: ISDSHIPPINGPNT Type: view BASIC

Shipping Point

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 6 fields with key field ShippingPoint. It has 2 associations to related views.

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 false 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 (6)

KeyFieldSource TableSource FieldDescription
KEY ShippingPoint vstel
ActiveDepartureCountry aland
AddressID adrnr
PickingConfirmation koqui
_Text _Text
_ActiveDepartureCountry _ActiveDepartureCountry
@AbapCatalog.preserveKey:true
@ClientHandling.algorithm: #SESSION_VARIABLE 
@ObjectModel.representativeKey: 'ShippingPoint'
@ObjectModel.usageType.dataClass: #ORGANIZATIONAL
@ObjectModel.usageType.serviceQuality: #A 
@ObjectModel.usageType.sizeCategory: #S 
@EndUserText.label: 'Shipping Point'
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: false }
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck:#CHECK
@AbapCatalog.sqlViewName: 'ISDSHIPPINGPNT'
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #FULL
@Metadata.allowExtensions: true
@Metadata.ignorePropagatedAnnotations:true 
@ObjectModel.supportedCapabilities: [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #ANALYTICAL_DIMENSION ]
@ObjectModel.modelingPattern: [ #ANALYTICAL_DIMENSION ]

@ObjectModel.sapObjectNodeType.name: 'ShippingPoint'
define view I_ShippingPoint
as select from
tvst  
association [0..*] to I_ShippingPointText as _Text on $projection.ShippingPoint = _Text.ShippingPoint
association [0..1] to I_Country as _ActiveDepartureCountry on $projection.ActiveDepartureCountry = _ActiveDepartureCountry.Country
{
    @ObjectModel.text.association: '_Text'
    key vstel as ShippingPoint,
    @ObjectModel.foreignKey.association: '_ActiveDepartureCountry'
    aland   as ActiveDepartureCountry,
    adrnr   as AddressID,
    koqui   as PickingConfirmation,
   
    _Text,
    _ActiveDepartureCountry
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TVST"
],
"ASSOCIATED":
[
"I_COUNTRY",
"I_SHIPPINGPOINTTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/