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

I_ProdEWMProcBlkProfile

DDL: I_PRODEWMPROCBLKPROFILE SQL: IPRDEWMPROCBLK Type: view BASIC Package: VDM_SCMB_PRODUCT

Basic View - Process Block Profile

I_ProdEWMProcBlkProfile is a Basic CDS View that provides data about "Basic View - Process Block Profile" in SAP S/4HANA. It reads from 1 data source (/scwm/tprocprfl) and exposes 3 fields with key fields Warehouse, EWMProductProcessBlockProfile. It has 1 association to related views. Part of development package VDM_SCMB_PRODUCT.

Data Sources (1)

SourceAliasJoin Type
/scwm/tprocprfl /scwm/tprocprfl from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ProdEWMProcBlkPrflText _Text $projection.Warehouse = _Text.Warehouse and $projection.EWMProductProcessBlockProfile = _Text.EWMProductProcessBlockProfile

Annotations (12)

NameValueLevelField
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_EWM_ProcessBlockProfile view
AbapCatalog.sqlViewName IPRDEWMPROCBLK view
EndUserText.label Basic View - Process Block Profile view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
ObjectModel.representativeKey EWMProductProcessBlockProfile view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Warehouse lgnum Whse Number
KEY EWMProductProcessBlockProfile procprfl Proc.Blck Prof.
_Text _Text

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_ProdEWMProcBlkProfile.
-- 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: IPRDEWMPROCBLK

CREATE VIEW I_ProdEWMProcBlkProfile AS
SELECT
  lgnum AS Warehouse,
  procprfl AS EWMProductProcessBlockProfile
FROM /scwm/tprocprfl
LEFT OUTER JOIN I_ProdEWMProcBlkPrflText AS _Text ON Warehouse = _Text.Warehouse AND EWMProductProcessBlockProfile = _Text.EWMProductProcessBlockProfile  -- association [0..*]
;