P_ChgNmbrParameterEffectivity

DDL: P_CHGNMBRPARAMETEREFFECTIVITY Type: view_entity BASIC

P_ChgNmbrParameterEffectivity is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (I_ChangeMaster, mpe_cm_ecn) and exposes 5 fields with key fields ChangeNumber, ParamEffctyHashValue.

Data Sources (2)

SourceAliasJoin Type
I_ChangeMaster ChangeMaster inner
mpe_cm_ecn ParameterEffectivity from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
VDM.private true view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ChangeNumber mpe_cm_ecn aennr Change Number
KEY ParamEffctyHashValue mpe_cm_ecn hash_key Hash Value
EffectivityType mpe_cm_ecn eff_type Effect. Type
ChangeNumberCreationDate I_ChangeMaster ChangeNumberCreationDate
ChangeNumberLastChgdDateTime I_ChangeMaster ChangeNumberLastChgdDateTime Time Stamp

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 P_ChgNmbrParameterEffectivity.
-- 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 P_ChgNmbrParameterEffectivity AS
SELECT
  ParameterEffectivity.aennr AS ChangeNumber,
  ParameterEffectivity.hash_key AS ParamEffctyHashValue,
  ParameterEffectivity.eff_type AS EffectivityType,
  ChangeMaster.ChangeNumberCreationDate AS ChangeNumberCreationDate,
  ChangeMaster.ChangeNumberLastChgdDateTime AS ChangeNumberLastChgdDateTime
FROM mpe_cm_ecn AS ParameterEffectivity
INNER JOIN I_ChangeMaster AS ChangeMaster ON /* join condition not captured in parsed metadata */
;