I_MRPChangeRequestListBasic

DDL: I_MRPCHANGEREQUESTLISTBASIC Type: view_entity COMPOSITE Package: ODATA_PP_MRP

MRP change Request Note and Line

I_MRPChangeRequestListBasic is a Composite CDS View that provides data about "MRP change Request Note and Line" in SAP S/4HANA. It reads from 1 data source (P_MRPCHANGEREQUESTLIST_TF) and exposes 20 fields with key fields ChangeRequestUUID, MRPElement, MRPElementItem, MRPElementScheduleLine. Part of development package ODATA_PP_MRP.

Data Sources (1)

SourceAliasJoin Type
P_MRPCHANGEREQUESTLIST_TF P_MRPCHANGEREQUESTLIST_TF from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label MRP change Request Note and Line view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view

Fields (20)

KeyFieldSource TableSource FieldDescription
KEY ChangeRequestUUID ChangeRequestUUID
KEY MRPElement MRPElement MRP element number
KEY MRPElementItem MRPElementItem MRP elemnt item
KEY MRPElementScheduleLine MRPElementScheduleLine Scheduling
Material Material Vehicle Model
MRPPlant MRPPlant Plant
MRPArea MRPArea MRP Area
SolutionRequestStatus SolutionRequestStatus
MRPRequestSupplierResponse MRPRequestSupplierResponse
CreationDateTime CreationDateTime Timestamp
ChangedDateTime ChangedDateTime Time Stamp
ChangeRequestType ChangeRequestType
MRPPlanningSegmentType MRPPlanningSegmentType MRP segment
MRPPlanningSegment MRPPlanningSegment Plng Segmnt No.
Supplier Supplier Supplier
SupplierPlant SupplierPlant Plant
GoodsReceiptDuration GoodsReceiptDuration GR proc. time
ChangeRequestNote ChangeRequestNote Short Description
CreatedByUser CreatedByUser User Name
LastChangedByUser LastChangedByUser User Name

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_MRPChangeRequestListBasic.
-- 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_MRPChangeRequestListBasic AS
SELECT
  ChangeRequestUUID,
  MRPElement,
  MRPElementItem,
  MRPElementScheduleLine,
  Material,
  MRPPlant,
  MRPArea,
  SolutionRequestStatus,
  MRPRequestSupplierResponse,
  CreationDateTime,
  ChangedDateTime,
  ChangeRequestType,
  MRPPlanningSegmentType,
  MRPPlanningSegment,
  Supplier,
  SupplierPlant,
  GoodsReceiptDuration,
  ChangeRequestNote,
  CreatedByUser,
  LastChangedByUser
FROM P_MRPCHANGEREQUESTLIST_TF
;