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

I_ProdEWMAdjmtProfileText

DDL: I_PRODEWMADJMTPROFILETEXT SQL: IPRDEWMADJMTTXT Type: view BASIC

Text View - Adjustment Profile

I_ProdEWMAdjmtProfileText is a Basic CDS View that provides data about "Text View - Adjustment Profile" in SAP S/4HANA. It reads from 1 data source (/scwm/tmedi_apt) and exposes 5 fields with key fields Language, AdjustmentProfile. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/scwm/tmedi_apt /scwm/tmedi_apt from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_ProdEWMAdjmtProfile _AdjustmentProfile $projection.AdjustmentProfile = _AdjustmentProfile.AdjustmentProfile
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_EWM_QtyAdjustmentPrflText_2 view
AbapCatalog.sqlViewName IPRDEWMADJMTTXT view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Text View - Adjustment Profile view
ObjectModel.representativeKey AdjustmentProfile view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language /scwm/tmedi_apt langu Primary lang.
KEY AdjustmentProfile /scwm/tmedi_apt aprof Settlmt Profile
EWMAdjustmentProfileText /scwm/tmedi_apt aprof_text Desc. Adj.Prof.
_Language _Language
_AdjustmentProfile _AdjustmentProfile

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_ProdEWMAdjmtProfileText.
-- 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: IPRDEWMADJMTTXT

CREATE VIEW I_ProdEWMAdjmtProfileText AS
SELECT
  /scwm/tmedi_apt.langu AS Language,
  /scwm/tmedi_apt.aprof AS AdjustmentProfile,
  /scwm/tmedi_apt.aprof_text AS EWMAdjustmentProfileText
FROM /scwm/tmedi_apt
LEFT OUTER JOIN I_ProdEWMAdjmtProfile AS _AdjustmentProfile ON AdjustmentProfile = _AdjustmentProfile.AdjustmentProfile  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;