I_ShippingStatusText

DDL: I_SHIPPINGSTATUSTEXT SQL: ISDSHIPPINGSTST Type: view BASIC

Shipping Status Text

I_ShippingStatusText is a Basic CDS View that provides data about "Shipping Status Text" in SAP S/4HANA. It reads from 1 data source (tvbst) and exposes 5 fields with key fields OverallGoodsMovementStatus, Language.

Data Sources (1)

SourceAliasJoin Type
tvbst tvbst from

Annotations (10)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey OverallGoodsMovementStatus view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Shipping Status Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISDSHIPPINGSTST view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY OverallGoodsMovementStatus statu
KEY Language spras
ShippingStatusDescription bezei
_ShippingStatus _ShippingStatus
_Language _Language
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'OverallGoodsMovementStatus'
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@EndUserText.label: 'Shipping Status Text'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck:  #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ISDSHIPPINGSTST'

// Used for alternative description of the Overall Goods Movement Status


define view I_ShippingStatusText
as select from tvbst

association[0..1] to I_ShippingStatus as _ShippingStatus on $projection.OverallGoodsMovementStatus = _ShippingStatus.OverallGoodsMovementStatus
association[0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
    @ObjectModel.foreignKey.association: '_ShippingStatus'
    key statu as OverallGoodsMovementStatus,
    
    @Semantics.language: true
    @ObjectModel.foreignKey.association: '_Language'
    key spras as Language,
    
    @Semantics.text: true
    bezei as ShippingStatusDescription,
    
    _ShippingStatus,
    _Language    
} 
where (tvbst.tbnam = 'LIKP') and  (tvbst.fdnam = 'WBSTK_OD');   
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"TVBST"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_SHIPPINGSTATUS"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/