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

I_ProdEWMAdjmtProfile

DDL: I_PRODEWMADJMTPROFILE SQL: IEWMADJMTPRFL Type: view BASIC Package: VDM_SCMB_PRODUCT

Basic View - Adjustment Profile

I_ProdEWMAdjmtProfile is a Basic CDS View that provides data about "Basic View - Adjustment Profile" in SAP S/4HANA. It reads from 1 data source (/scwm/tmedi_ap) and exposes 2 fields with key field AdjustmentProfile. It has 1 association to related views. Part of development package VDM_SCMB_PRODUCT.

Data Sources (1)

SourceAliasJoin Type
/scwm/tmedi_ap /scwm/tmedi_ap from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ProdEWMAdjmtProfileText _Text $projection.AdjustmentProfile = _Text.AdjustmentProfile

Annotations (12)

NameValueLevelField
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_EWM_QtyAdjustmentProfile_2 view
AbapCatalog.sqlViewName IEWMADJMTPRFL view
EndUserText.label Basic View - Adjustment Profile view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
ObjectModel.representativeKey AdjustmentProfile view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY AdjustmentProfile /scwm/tmedi_ap aprof Settlmt Profile
_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_ProdEWMAdjmtProfile.
-- 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: IEWMADJMTPRFL

CREATE VIEW I_ProdEWMAdjmtProfile AS
SELECT
  /scwm/tmedi_ap.aprof AS AdjustmentProfile
FROM /scwm/tmedi_ap
LEFT OUTER JOIN I_ProdEWMAdjmtProfileText AS _Text ON AdjustmentProfile = _Text.AdjustmentProfile  -- association [0..*]
;