I_EWM_ProcessBlockProfile

DDL: I_EWM_PROCESSBLOCKPROFILE Type: view_entity BASIC

Process Block Profile

I_EWM_ProcessBlockProfile is a Basic CDS View that provides data about "Process Block Profile" in SAP S/4HANA. It reads from 1 data source (/scwm/tprocprfl) and exposes 4 fields with key fields EWMWarehouse, EWMProcessBlockProfile. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/scwm/tprocprfl /scwm/tprocprfl from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_EWM_WarehouseNumber_2 _WarehouseNumber $projection.EWMWarehouse = _WarehouseNumber.EWMWarehouse
[0..*] I_EWM_ProcessBlockProfileText _Text $projection.EWMWarehouse = _Text.EWMWarehouse and $projection.EWMProcessBlockProfile = _Text.EWMProcessBlockProfile

Annotations (9)

NameValueLevelField
EndUserText.label Process Block Profile view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey EWMProcessBlockProfile view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY EWMWarehouse lgnum Whse Number
KEY EWMProcessBlockProfile procprfl Proc.Blck Prof.
_WarehouseNumber _WarehouseNumber
_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_EWM_ProcessBlockProfile.
-- 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_ProcessBlockProfile AS
SELECT
  lgnum AS EWMWarehouse,
  procprfl AS EWMProcessBlockProfile
FROM /scwm/tprocprfl
LEFT OUTER JOIN I_EWM_WarehouseNumber_2 AS _WarehouseNumber ON EWMWarehouse = _WarehouseNumber.EWMWarehouse  -- association [0..1]
LEFT OUTER JOIN I_EWM_ProcessBlockProfileText AS _Text ON EWMWarehouse = _Text.EWMWarehouse AND EWMProcessBlockProfile = _Text.EWMProcessBlockProfile  -- association [0..*]
;