I_EWM_ActivityArea

DDL: I_EWM_ACTIVITYAREA SQL: IEWMAAREA Type: view BASIC Package: VDM_EWM_CORE

Warehouse Activity Area

I_EWM_ActivityArea (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

Supply Chain

I_EWM_ActivityArea is a Basic CDS View (Dimension) that provides data about "Warehouse Activity Area" in SAP S/4HANA. It reads from 1 data source (/scwm/taarea) and exposes 4 fields with key fields ActivityArea, Warehouse. It has 2 associations to related views. Part of development package VDM_EWM_CORE.

SAP Help Documentation

CategoryCDS Views for Master Data
Data CategoryDimension
StatusReleased
Purpose
This CDS view provides information about activity areas in your warehouse.

Structure
Measures and Attributes Some important measures and attributes are as follows: Warehouse Activity Area

View on SAP Help Portal →

SAP API Hub

CategoryBasic
StateDeprecated
Line of BusinessSupply Chain
Application ComponentSCM-EWM-WOP-2CL
CapabilitiesAnalytical Dimension,Data Source in SQL Select,Data Source for Defining CDS Entities,Association Target for Defining CDS Entities
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Not Released
PackageSupply Chain for SAP S/4HANA Cloud Public Edition
Description <p>This CDS view provides information about activity areas in your warehouse. </p>

Documentation

Data Sources (1)

SourceAliasJoin Type
/scwm/taarea /scwm/taarea from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_EWM_WarehouseNumber _Warehouse $projection.Warehouse = _Warehouse.Warehouse
[1..*] I_EWM_ActivityAreaText _Text $projection.ActivityArea = _Text.ActivityArea and $projection.Warehouse = _Text.Warehouse

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IEWMAAREA view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Warehouse Activity Area view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
Analytics.dataCategory #DIMENSION view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ActivityArea aarea Activity Area
_Text _Text
KEY Warehouse lgnum Warehouse Number/Warehouse Complex
_Warehouse _Warehouse

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_ActivityArea.
-- 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.
-- SQL view name: IEWMAAREA

CREATE VIEW I_EWM_ActivityArea AS
SELECT
  aarea AS ActivityArea,
  lgnum AS Warehouse
FROM /scwm/taarea
LEFT OUTER JOIN I_EWM_WarehouseNumber AS _Warehouse ON Warehouse = _Warehouse.Warehouse  -- association [0..1]
LEFT OUTER JOIN I_EWM_ActivityAreaText AS _Text ON ActivityArea = _Text.ActivityArea AND Warehouse = _Text.Warehouse  -- association [1..*]
;