I_ChgRecdTypeRefObj
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. Part of development package VDM_PLMB_CR.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| /plmi/cr_type | crtype | from |
| dd07l | dd07l | inner |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Change Record Type Reference Object | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ChangeRecordType | /plmi/cr_type | cr_type | |
| KEY | ChangeRecordReferenceType |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Change Record Type Reference Object'
@VDM.viewType: #BASIC
@ObjectModel.usageType: {serviceQuality: #B,
dataClass: #CUSTOMIZING,
sizeCategory: #S}
define view entity I_ChgRecdTypeRefObj
as select from /plmi/cr_type as crtype
inner join dd07l on dd07l.domname = '/PLMI/CR_REFOBJ'
and dd07l.as4local = 'A'
{
key crtype.cr_type as ChangeRecordType,
key cast( dd07l.domvalue_l as /iam/type ) as ChangeRecordReferenceType
}
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