I_EWM_WhseProcTypeCtrlIndText

DDL: I_EWM_WHSEPROCTYPECTRLINDTEXT Type: view_entity BASIC

Ctrl Ind for Whse Process Type - Text

I_EWM_WhseProcTypeCtrlIndText is a Basic CDS View that provides data about "Ctrl Ind for Whse Process Type - Text" in SAP S/4HANA. It reads from 1 data source (/scwm/tptdetindt) and exposes 6 fields with key fields Language, EWMWarehouse, EWMProcessTypeControlCode. 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_EWM_WhseProcessTypeCtrlInd _WhseProcessTypeCtrlInd $projection.EWMWarehouse = _WhseProcessTypeCtrlInd.EWMWarehouse and $projection.EWMProcessTypeControlCode = _WhseProcessTypeCtrlInd.EWMProcessTypeControlCode

Annotations (10)

NameValueLevelField
Analytics.technicalName IEWMWPTCTRLINTXT view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Ctrl Ind for Whse Process Type - Text view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey EWMProcessTypeControlCode view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language /scwm/tptdetindt langu Primary lang.
KEY EWMWarehouse /scwm/tptdetindt lgnum Whse Number
KEY EWMProcessTypeControlCode /scwm/tptdetindt ptdetind ProcTypeDet Ind
EWMProcessTypeControlCodeText /scwm/tptdetindt text User Group
_Language _Language
_WhseProcessTypeCtrlInd _WhseProcessTypeCtrlInd

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_WhseProcTypeCtrlIndText.
-- 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_WhseProcTypeCtrlIndText AS
SELECT
  /scwm/tptdetindt.langu AS Language,
  /scwm/tptdetindt.lgnum AS EWMWarehouse,
  /scwm/tptdetindt.ptdetind AS EWMProcessTypeControlCode,
  /scwm/tptdetindt.text AS EWMProcessTypeControlCodeText
FROM /scwm/tptdetindt
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_EWM_WhseProcessTypeCtrlInd AS _WhseProcessTypeCtrlInd ON EWMWarehouse = _WhseProcessTypeCtrlInd.EWMWarehouse AND EWMProcessTypeControlCode = _WhseProcessTypeCtrlInd.EWMProcessTypeControlCode  -- association [0..1]
;