I_EWM_StagingBayVH

DDL: I_EWM_STAGINGBAYVH Type: view_entity COMPOSITE

Staging Bay

I_EWM_StagingBayVH is a Composite CDS View that provides data about "Staging Bay" in SAP S/4HANA. It reads from 1 data source (I_EWM_StagingBay) and exposes 9 fields with key fields EWMWarehouse, StagingBay.

Data Sources (1)

SourceAliasJoin Type
I_EWM_StagingBay I_EWM_StagingBay from

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Staging Bay view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.dataCategory #VALUE_HELP view
VDM.viewType #COMPOSITE view
ObjectModel.representativeKey StagingBay view
Search.searchable true view
Consumption.ranked true view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY EWMWarehouse EWMWarehouse Warehouse No.
_Warehouse _Warehouse
KEY StagingBay StagingBay Staging Bay
StagingArea StagingArea Stag. Area
EWMStagingAreaName
_StagingAreaText _StagingAreaText
StagingAreaGroup StagingAreaGroup Stg. Area Group
EWMStagingAreaGroupName
_StagingAreaGroupText _StagingAreaGroupText

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_EWM_StagingBayVH.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW I_EWM_StagingBayVH AS
SELECT
  EWMWarehouse,
  StagingBay,
  StagingArea,
  cast( _StagingAreaText[1:Language=$session.system_language].StorageSectionName as ewm_de_stagingareaname preserving type ) AS EWMStagingAreaName,
  StagingAreaGroup,
  cast( _StagingAreaGroupText[1:Language=$session.system_language].EWMStorageTypeName as ewm_de_stagingareagroupname preserving type ) AS EWMStagingAreaGroupName
FROM I_EWM_StagingBay
;