I_WarehouseGateText

DDL: I_WAREHOUSEGATETEXT SQL: ILEWRHSGATET Type: view BASIC

Warehouse Gate - Text

I_WarehouseGateText is a Basic CDS View that provides data about "Warehouse Gate - Text" in SAP S/4HANA. It reads from 1 data source (t30bt) and exposes 7 fields with key fields Warehouse, WarehouseGate, Language.

Data Sources (1)

SourceAliasJoin Type
t30bt t30bt from

Annotations (11)

NameValueLevelField
Analytics.dataExtraction.enabled false view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey WarehouseGate view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Warehouse Gate - Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ILEWRHSGATET view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Warehouse lgnum
KEY WarehouseGate lgtor
KEY Language spras
WarehouseGateName ltort
_Warehouse _Warehouse
_WarehouseGate _WarehouseGate
_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: 'WarehouseGate'
@ObjectModel.usageType.dataClass: #ORGANIZATIONAL
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
//Commented by VDM CDS Suite Plugin:@ObjectModel.representativeKey: 'WarehouseGate'

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

@EndUserText.label: 'Warehouse Gate - Text'
//Commented by VDM CDS Suite Plugin:@Analytics: { dataCategory: #TEXT, dataExtraction.enabled: true }

@VDM.viewType: #BASIC
@AccessControl.authorizationCheck:  #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ILEWRHSGATET'

define view I_WarehouseGateText
as
select from t30bt
association[0..1] to I_Warehouse as _Warehouse on $projection.Warehouse = _Warehouse.Warehouse
association[0..1] to I_WarehouseGate as _WarehouseGate on $projection.Warehouse = _WarehouseGate.Warehouse and $projection.WarehouseGate = _WarehouseGate.WarehouseGate
association[0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
    @ObjectModel.foreignKey.association: '_Warehouse'
    key lgnum as Warehouse,
    @ObjectModel.foreignKey.association: '_WarehouseGate'
    key lgtor as WarehouseGate,
    @Semantics.language
    @ObjectModel.foreignKey.association: '_Language'
    key spras as Language,
    @Semantics.text
    ltort as WarehouseGateName,
    
    //Associations

    _Warehouse,
    _WarehouseGate,
    _Language    
};


   
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"T30BT"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_WAREHOUSE",
"I_WAREHOUSEGATE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/