I_EWM_WrhsProcType_2

DDL: I_EWM_WRHSPROCTYPE_2 Type: view_entity BASIC

Warehouse Process Type

I_EWM_WrhsProcType_2 (Basic)

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

Supply Chain

I_EWM_WrhsProcType_2 is a Basic CDS View (Dimension) that provides data about "Warehouse Process Type" in SAP S/4HANA. It reads from 1 data source (/scwm/t333) and exposes 4 fields with key fields WarehouseProcessType, EWMWarehouse. It has 2 associations to related views.

SAP Help Documentation

CategoryCDS Views for Cross Processes
Data CategoryDimension
Purpose
This CDS view provides information about warehouse process types in your warehouse. This CDS view provides the data to answer the following business questions: What are the warehouse process types in your warehouse? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations Users who want to use this CDS view must have the following authorization objects assigned: /SCWM/WHF4 ( Warehouse Number Data in Value Helps )

Structure
Further important fields Important fields in this view include the following: Field Name Description Warehouse Warehouse WarehouseProcessType Warehouse Process Type

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessSupply Chain
Application ComponentSCM-EWM-WOP
CapabilitiesAnalytical Dimension, Data Source for Defining CDS Entities, Data Source in SQL Select, Association Target for Defining CDS Entities
PackageSupply Chain for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides information about warehouse process types in your warehouse.</p> This CDS view provides the data to answer the following business questions:<ul> <li><p>What are the warehouse process types in your warehouse?</p></li> </ul> <p>To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
/scwm/t333 /scwm/t333 from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_EWM_WarehouseNumber_2 _Warehouse $projection.EWMWarehouse = _Warehouse.EWMWarehouse
[0..*] I_EWM_WrhsProcTypeText_2 _Text $projection.WarehouseProcessType = _Text.WarehouseProcessType and $projection.EWMWarehouse = _Text.EWMWarehouse

Annotations (13)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Warehouse Process Type view
VDM.viewType #BASIC view
ObjectModel.representativeKey WarehouseProcessType view
Analytics.technicalName IEWMWPT2 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
Analytics.internalName #LOCAL view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY WarehouseProcessType procty Warehouse Process Type
_Text _Text
KEY EWMWarehouse 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_WrhsProcType_2.
-- 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_WrhsProcType_2 AS
SELECT
  procty AS WarehouseProcessType,
  lgnum AS EWMWarehouse
FROM /scwm/t333
LEFT OUTER JOIN I_EWM_WarehouseNumber_2 AS _Warehouse ON EWMWarehouse = _Warehouse.EWMWarehouse  -- association [0..1]
LEFT OUTER JOIN I_EWM_WrhsProcTypeText_2 AS _Text ON WarehouseProcessType = _Text.WarehouseProcessType AND EWMWarehouse = _Text.EWMWarehouse  -- association [0..*]
;