I_ChgImpactOrderEffectivity

DDL: I_CHGIMPACTORDEREFFECTIVITY SQL: ICHGIMPORDEFF Type: view BASIC

Order Effectivity

I_ChgImpactOrderEffectivity is a Basic CDS View that provides data about "Order Effectivity" in SAP S/4HANA. It reads from 1 data source (mpe_bom_ps_rel) and exposes 3 fields with key field OrderID.

Data Sources (1)

SourceAliasJoin Type
mpe_bom_ps_rel ChgImpactParameffec from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICHGIMPORDEFF view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Order Effectivity view
ObjectModel.representativeKey OrderID view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY OrderID mpe_bom_ps_rel aufnr SettlementOrder
Material mpe_bom_ps_rel matnr Vehicle Model
EffectivityParameterVariant mpe_bom_ps_rel techs Tech st from

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_ChgImpactOrderEffectivity.
-- 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: ICHGIMPORDEFF

CREATE VIEW I_ChgImpactOrderEffectivity AS
SELECT
  ChgImpactParameffec.aufnr AS OrderID,
  ChgImpactParameffec.matnr AS Material,
  ChgImpactParameffec.techs AS EffectivityParameterVariant
FROM mpe_bom_ps_rel AS ChgImpactParameffec
;