I_HandlingUnitInStockText

DDL: I_HANDLINGUNITINSTOCKTEXT SQL: ILEHNDLGUINSTKT Type: view BASIC

Handling Unit In Stock Text

I_HandlingUnitInStockText is a Basic CDS View that provides data about "Handling Unit In Stock Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields HandlingUnitInStock, Language.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (11)

NameValueLevelField
Analytics.dataExtraction.enabled false view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey HandlingUnitInStock view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Handling Unit In Stock Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ILEHNDLGUINSTKT view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY HandlingUnitInStock
KEY Language ddlanguage
HandlingUnitInStockDesc ddtext
_HandlingUnitInStock _HandlingUnitInStock
_Language _Language
@Analytics.dataExtraction.enabled: false //Inserted by VDM CDS Suite Plugin

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

@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'HandlingUnitInStock'
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
//Commented by VDM CDS Suite Plugin:@ObjectModel.representativeKey: 'HandlingUnitInStock'

//Commented by VDM CDS Suite Plugin:@ObjectModel.dataCategory: #TEXT

@EndUserText.label: 'Handling Unit In Stock Text'
//Commented by VDM CDS Suite Plugin:@Analytics: { dataCategory: #TEXT, dataExtraction.enabled: true }

@VDM.viewType: #BASIC
@AccessControl.authorizationCheck:#NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ILEHNDLGUINSTKT'
define view I_HandlingUnitInStockText
as select from  dd07t
association[0..1] to I_HandlingUnitInStock as _HandlingUnitInStock on $projection.HandlingUnitInStock = _HandlingUnitInStock.HandlingUnitInStock
association[0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
    //Key

    @ObjectModel.foreignKey.association: '_HandlingUnitInStock'
    key SUBSTRING(domvalue_l, 1, 1) as HandlingUnitInStock,
    @Semantics.language
    @ObjectModel.foreignKey.association: '_Language'
    key ddlanguage as Language,
    
    //Text

    @Semantics.text
    ddtext as HandlingUnitInStockDesc,
    
    //Associations

    _HandlingUnitInStock,
    _Language
}
where dd07t.domname = 'VESTK' and dd07t.as4local = 'A';