I_ChgRecChildTP
Change Record Parent Child - TP
I_ChgRecChildTP is a Transactional CDS View that provides data about "Change Record Parent Child - TP" in SAP S/4HANA. It reads from 1 data source (I_ChangeRecordParentChild) and exposes 6 fields with key fields ChangeRecordUUID, ParentChangeRecordUUID. Part of development package VDM_PLMB_CR.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ChangeRecordParentChild | I_ChangeRecordParentChild | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #TRANSACTIONAL | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| EndUserText.label | Change Record Parent Child - TP | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ChangeRecordUUID | ChangeRecordUUID | ||
| KEY | ParentChangeRecordUUID | ParentChangeRecordUUID | ||
| ChildChangeRecord | ||||
| ChildChgRecordDescriptionText | ||||
| ParentChangeRecord | ||||
| ParentChgRecordDescriptionText |
@VDM.viewType: #TRANSACTIONAL
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.usageType: {serviceQuality: #C,
dataClass: #MIXED,
sizeCategory: #XXL}
@EndUserText.label: 'Change Record Parent Child - TP'
define view entity I_ChgRecChildTP
as select from I_ChangeRecordParentChild
{
key ChangeRecordUUID,
key ParentChangeRecordUUID,
@ObjectModel.text.element: [ 'ChildChgRecordDescriptionText']
I_ChangeRecordParentChild._Child.ChangeRecord as ChildChangeRecord,
I_ChangeRecordParentChild._Child.ChgRecordDescriptionText as ChildChgRecordDescriptionText,
@ObjectModel.text.element: [ 'ParentChgRecordDescriptionText']
I_ChangeRecordParentChild._Parent.ChangeRecord as ParentChangeRecord,
I_ChangeRecordParentChild._Parent.ChgRecordDescriptionText as ParentChgRecordDescriptionText
}
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