I_ChgRecdTypeConfiguration
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)
| Source | Alias | Join Type |
|---|---|---|
| /plmi/cr_type | CR_Type | inner |
| /iam/c_issuetyp | Issue_Type | from |
| nriv | NumberRangeInterval | inner |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ChangeRecordType | /iam/c_issuetyp | issue_type | |
| IsExternalNumberRange | nriv | externind |
@AbapCatalog.sqlViewName: 'ICRTYPCONFIGN'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType: {serviceQuality: #C, sizeCategory: #S, dataClass: #MASTER}
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Change Record Type Configuration'
define view I_ChgRecdTypeConfiguration
as select from /iam/c_issuetyp as Issue_Type
inner join /plmi/cr_type as CR_Type on Issue_Type.issue_type = CR_Type.cr_type
inner join nriv as NumberRangeInterval on(
Issue_Type.nrange_interval = NumberRangeInterval.nrrangenr
)
{
key Issue_Type.issue_type as ChangeRecordType,
NumberRangeInterval.externind as IsExternalNumberRange
}
where
Issue_Type.application = 'CR'
and CR_Type.cr_category = 'ECR'
and NumberRangeInterval.object = '/IAM/ISSUE'
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA