I_EWM_WhseProcessTypeCtrlInd

DDL: I_EWM_WHSEPROCESSTYPECTRLIND Type: view_entity BASIC

Ctrl Ind for Warehouse Process Type

I_EWM_WhseProcessTypeCtrlInd is a Basic CDS View that provides data about "Ctrl Ind for Warehouse Process Type" in SAP S/4HANA. It reads from 1 data source (/scwm/tptdetind) and exposes 3 fields with key fields EWMWarehouse, EWMProcessTypeControlCode. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
/scwm/tptdetind /scwm/tptdetind from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_EWM_WhseProcTypeCtrlIndText _Text $projection.EWMWarehouse = _Text.EWMWarehouse and $projection.EWMProcessTypeControlCode = _Text.EWMProcessTypeControlCode

Annotations (8)

NameValueLevelField
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Ctrl Ind for Warehouse Process Type view
ObjectModel.representativeKey EWMProcessTypeControlCode view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY EWMWarehouse lgnum Whse Number
KEY EWMProcessTypeControlCode ptdetind ProcTypeDet Ind
_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_WhseProcessTypeCtrlInd.
-- 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_WhseProcessTypeCtrlInd AS
SELECT
  lgnum AS EWMWarehouse,
  ptdetind AS EWMProcessTypeControlCode
FROM /scwm/tptdetind
LEFT OUTER JOIN I_EWM_WhseProcTypeCtrlIndText AS _Text ON EWMWarehouse = _Text.EWMWarehouse AND EWMProcessTypeControlCode = _Text.EWMProcessTypeControlCode  -- association [0..*]
;