I_ChgRecdTypeConfiguration

DDL: I_CHGRECDTYPECONFIGURATION SQL: ICRTYPCONFIGN Type: view BASIC

Change Record Type Configuration

I_ChgRecdTypeConfiguration is a Basic CDS View that provides data about "Change Record Type Configuration" in SAP S/4HANA. It reads from 3 data sources (/plmi/cr_type, /iam/c_issuetyp, nriv) and exposes 2 fields with key field ChangeRecordType.

Data Sources (3)

SourceAliasJoin Type
/plmi/cr_type CR_Type inner
/iam/c_issuetyp Issue_Type from
nriv NumberRangeInterval inner

Annotations (10)

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

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ChangeRecordType /iam/c_issuetyp issue_type Issue Type
IsExternalNumberRange nriv externind External NR

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_ChgRecdTypeConfiguration.
-- 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: ICRTYPCONFIGN

CREATE VIEW I_ChgRecdTypeConfiguration AS
SELECT
  Issue_Type.issue_type AS ChangeRecordType,
  NumberRangeInterval.externind AS IsExternalNumberRange
FROM /iam/c_issuetyp AS Issue_Type
INNER JOIN /plmi/cr_type AS CR_Type ON /* join condition not captured in parsed metadata */
INNER JOIN nriv AS NumberRangeInterval ON /* join condition not captured in parsed metadata */
;