I_ChgRecdWithMatl

DDL: I_CHGRECDWITHMATL SQL: ICRWITHMATL Type: view BASIC

Open Change Record Details with Material

I_ChgRecdWithMatl is a Basic CDS View that provides data about "Open Change Record Details with Material" in SAP S/4HANA. It reads from 5 data sources (/plmi/cr_type, vmp_plnscp_hdr, mast, /iam/d_i_root, stko) and exposes 2 fields with key field ChangeRecordUUID.

Data Sources (5)

SourceAliasJoin Type
/plmi/cr_type cr_type inner
vmp_plnscp_hdr hdr left_outer
mast mast left_outer
/iam/d_i_root root inner
stko stko left_outer

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICRWITHMATL view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #BASIC view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
EndUserText.label Open Change Record Details with Material view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ChangeRecordUUID /iam/d_i_root db_key UUID
ChangeRecord /iam/d_i_root issue_id Issue ID

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_ChgRecdWithMatl.
-- 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: ICRWITHMATL

CREATE VIEW I_ChgRecdWithMatl AS
SELECT
  root.db_key AS ChangeRecordUUID,
  root.issue_id AS ChangeRecord
INNER JOIN /iam/d_i_root AS root ON /* join condition not captured in parsed metadata */
INNER JOIN /plmi/cr_type AS cr_type ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN stko ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN mast ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN vmp_plnscp_hdr AS hdr ON /* join condition not captured in parsed metadata */
;