I_ShippingTypeText

DDL: I_SHIPPINGTYPETEXT SQL: ILESHIPPINGTYPET Type: view BASIC Package: VDM_LE_SHP_COMMON

Shipping Type - Text

I_ShippingTypeText is a Basic CDS View that provides data about "Shipping Type - Text" in SAP S/4HANA. It reads from 1 data source (t173t) and exposes 5 fields with key fields ShippingType, Language. It has 2 associations to related views. Part of development package VDM_LE_SHP_COMMON.

Data Sources (1)

SourceAliasJoin Type
t173t t173t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_ShippingType _ShippingType $projection.ShippingType = _ShippingType.ShippingType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (14)

NameValueLevelField
Analytics.dataExtraction.enabled true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.sapObjectNodeType.name ShippingTypeText view
ObjectModel.representativeKey ShippingType view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Shipping Type - Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ILESHIPPINGTYPET view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ShippingType vsart
KEY Language spras
ShippingTypeName bezei
_ShippingType _ShippingType
_Language _Language
  @Analytics.dataExtraction.enabled: true //Inserted by VDM CDS Suite Plugin

@ClientHandling.algorithm: #SESSION_VARIABLE //Inserted by VDM CDS Suite Plugin

@ObjectModel.dataCategory: #TEXT
@ObjectModel.sapObjectNodeType.name: 'ShippingTypeText'
@ObjectModel.representativeKey: 'ShippingType'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@EndUserText.label: 'Shipping Type - Text'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck:#NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ILESHIPPINGTYPET'
@Metadata.ignorePropagatedAnnotations:true
@Search.searchable: true
@ObjectModel.supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT, #SEARCHABLE_ENTITY, #EXTRACTION_DATA_SOURCE ]
@ObjectModel.modelingPattern: [ #LANGUAGE_DEPENDENT_TEXT ]

define view I_ShippingTypeText
as
select from t173t
association [0..1] to I_ShippingType as _ShippingType on $projection.ShippingType = _ShippingType.ShippingType
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
    @ObjectModel.foreignKey.association: '_ShippingType'
    key vsart as ShippingType,

    @Semantics.language
    @ObjectModel.foreignKey.association: '_Language'
    key spras as Language,

    @Semantics.text
    @Search.fuzzinessThreshold: 0.8
    @Search.defaultSearchElement: true
    bezei as ShippingTypeName,

    _ShippingType,
    _Language
};