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.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| /plmi/cr_type | crtype | from |
| dd07l | dd07l | inner |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ChangeRecordType | /plmi/cr_type | cr_type | |
| KEY | ChangeRecordReferenceType |
@AbapCatalog.sqlViewName: 'ICRTYPREFOBJ'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Change Record Type Reference Object'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.preserveKey:true
@ObjectModel.usageType: {serviceQuality: #C,
dataClass: #MIXED,
sizeCategory: #S}
define view 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
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"/PLMI/CR_TYPE",
"DD07L"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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