I_ChgRecdTypeRefObj

DDL: I_CHGRECDTYPEREFOBJ SQL: ICRTYPREFOBJ Type: view BASIC

Change Record Type Reference Object

I_ChgRecdTypeRefObj is a Basic CDS View that provides data about "Change Record Type Reference Object" in SAP S/4HANA. It reads from 2 data sources (/plmi/cr_type, dd07l) and exposes 2 fields with key fields ChangeRecordType, ChangeRecordReferenceType.

Data Sources (2)

SourceAliasJoin Type
/plmi/cr_type crtype from
dd07l dd07l inner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICRTYPREFOBJ view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Change Record Type Reference Object view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.preserveKey true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #S view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ChangeRecordType /plmi/cr_type cr_type Record Type
KEY ChangeRecordReferenceType

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_ChgRecdTypeRefObj.
-- 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: ICRTYPREFOBJ

CREATE VIEW I_ChgRecdTypeRefObj AS
SELECT
  crtype.cr_type AS ChangeRecordType,
  cast( dd07l.domvalue_l as /iam/type ) AS ChangeRecordReferenceType
FROM /plmi/cr_type AS crtype
INNER JOIN dd07l ON /* join condition not captured in parsed metadata */
;