Deprecated
This CDS view is deprecated in S/4HANA. Use I_EWM_WhseProcTypeCtrlIndText instead. View all deprecated CDS views →

I_ProdEWMWrhsProcTypeText

DDL: I_PRODEWMWRHSPROCTYPETEXT SQL: IEWMWRHSPRCTXT Type: view BASIC

Text View - Warehouse Process Type

I_ProdEWMWrhsProcTypeText is a Basic CDS View that provides data about "Text View - Warehouse Process Type" in SAP S/4HANA. It reads from 1 data source (/scwm/tptdetindt) and exposes 6 fields with key fields Language, Warehouse, EWMWarehouseProcessType. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/scwm/tptdetindt /scwm/tptdetindt from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_ProdEWMWrhsProcType _ProdEWMWrhsProcType $projection.Warehouse = _ProdEWMWrhsProcType.Warehouse and $projection.EWMWarehouseProcessType = _ProdEWMWrhsProcType.EWMWarehouseProcessType

Annotations (13)

NameValueLevelField
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_EWM_WhseProcTypeCtrlIndText view
AbapCatalog.sqlViewName IEWMWRHSPRCTXT view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Text View - Warehouse Process Type view
ObjectModel.representativeKey EWMWarehouseProcessType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language /scwm/tptdetindt langu Primary lang.
KEY Warehouse /scwm/tptdetindt lgnum Whse Number
KEY EWMWarehouseProcessType /scwm/tptdetindt ptdetind ProcTypeDet Ind
EWMProdProcessBlockProfileText /scwm/tptdetindt text User Group
_Language _Language
_ProdEWMWrhsProcType _ProdEWMWrhsProcType

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_ProdEWMWrhsProcTypeText.
-- 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: IEWMWRHSPRCTXT

CREATE VIEW I_ProdEWMWrhsProcTypeText AS
SELECT
  /scwm/tptdetindt.langu AS Language,
  /scwm/tptdetindt.lgnum AS Warehouse,
  /scwm/tptdetindt.ptdetind AS EWMWarehouseProcessType,
  /scwm/tptdetindt.text AS EWMProdProcessBlockProfileText
FROM /scwm/tptdetindt
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_ProdEWMWrhsProcType AS _ProdEWMWrhsProcType ON Warehouse = _ProdEWMWrhsProcType.Warehouse AND EWMWarehouseProcessType = _ProdEWMWrhsProcType.EWMWarehouseProcessType  -- association [0..1]
;