I_EWM_ProcessBlockProfileText

DDL: I_EWM_PROCESSBLOCKPROFILETEXT Type: view_entity BASIC

Process Block Profile - Text

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

Data Sources (1)

SourceAliasJoin Type
/scwm/tprocprflt /scwm/tprocprflt from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_EWM_WarehouseNumber_2 _WarehouseNumber $projection.EWMWarehouse = _WarehouseNumber.EWMWarehouse
[0..1] I_EWM_ProcessBlockProfile _ProcessBlockProfile $projection.EWMProcessBlockProfile = _ProcessBlockProfile.EWMProcessBlockProfile and $projection.EWMWarehouse = _ProcessBlockProfile.EWMWarehouse
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (11)

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

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Language /scwm/tprocprflt langu Primary lang.
KEY EWMWarehouse /scwm/tprocprflt lgnum Whse Number
KEY EWMProcessBlockProfile /scwm/tprocprflt procprfl Proc.Blck Prof.
EWMProdProcessBlockProfileText /scwm/tprocprflt text User Group
_Language _Language
_WarehouseNumber _WarehouseNumber
_ProcessBlockProfile _ProcessBlockProfile

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_ProcessBlockProfileText.
-- 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_ProcessBlockProfileText AS
SELECT
  /scwm/tprocprflt.langu AS Language,
  /scwm/tprocprflt.lgnum AS EWMWarehouse,
  /scwm/tprocprflt.procprfl AS EWMProcessBlockProfile,
  /scwm/tprocprflt.text AS EWMProdProcessBlockProfileText
FROM /scwm/tprocprflt
LEFT OUTER JOIN I_EWM_WarehouseNumber_2 AS _WarehouseNumber ON EWMWarehouse = _WarehouseNumber.EWMWarehouse  -- association [0..1]
LEFT OUTER JOIN I_EWM_ProcessBlockProfile AS _ProcessBlockProfile ON EWMProcessBlockProfile = _ProcessBlockProfile.EWMProcessBlockProfile AND EWMWarehouse = _ProcessBlockProfile.EWMWarehouse  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;