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
ActiveDepartureCountry ActiveDepartureCountry
ShippingPointName
_Text _Text
_ActiveDepartureCountry _ActiveDepartureCountry
@AbapCatalog.sqlViewName: 'CSHIPPOINTVH'
@VDM.viewType: #CONSUMPTION
@ClientHandling.algorithm:#SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Shipping Point Value Help'
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #XL
@AccessControl.personalData.blocking:#REQUIRED

@Search.searchable: true  
@Consumption.ranked: true

define view C_ShippingPointVH
  as select from I_ShippingPoint as ShippingPoint
{

      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
  key ShippingPoint,

      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      ActiveDepartureCountry,

      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      @UI.hidden: true
      cast(ShippingPoint._Text[1: Language=$session.system_language].ShippingPointName as bezei30) as ShippingPointName,

      _Text,
      _ActiveDepartureCountry
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SHIPPINGPOINT",
"I_SHIPPINGPOINTTEXT"
],
"ASSOCIATED":
[
"I_COUNTRY",
"I_SHIPPINGPOINTTEXT"
],
"BASE":
[
"I_SHIPPINGPOINT"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/