I_WarehouseGateText
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. Part of development package VDM_LE_SHP_COMMON.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t30bt | t30bt | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
};
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA