A_DocInfoRecdObjLinkChgRecd
Change Record Object Links
A_DocInfoRecdObjLinkChgRecd is a Composite CDS View that provides data about "Change Record Object Links" in SAP S/4HANA. It reads from 1 data source (I_DocInfoRecdObjLinkChgRecdTP) and exposes 8 fields with key fields DocumentInfoRecordDocType, DocumentInfoRecordDocNumber, DocumentInfoRecordDocVersion, DocumentInfoRecordDocPart, LinkedSAPObject.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_DocInfoRecdObjLinkChgRecdTP | ObjLink | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Change Record Object Links | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DocumentInfoRecordDocType | I_DocInfoRecdObjLinkChgRecdTP | DocumentInfoRecordDocType | |
| KEY | DocumentInfoRecordDocNumber | I_DocInfoRecdObjLinkChgRecdTP | DocumentInfoRecordDocNumber | |
| KEY | DocumentInfoRecordDocVersion | I_DocInfoRecdObjLinkChgRecdTP | DocumentInfoRecordDocVersion | |
| KEY | DocumentInfoRecordDocPart | I_DocInfoRecdObjLinkChgRecdTP | DocumentInfoRecordDocPart | |
| KEY | LinkedSAPObject | I_DocInfoRecdObjLinkChgRecdTP | LinkedSAPObject | |
| KEY | LinkedSAPObjectKey | I_DocInfoRecdObjLinkChgRecdTP | LinkedSAPObjectKey | |
| KEY | DocObjectLinkCounter | I_DocInfoRecdObjLinkChgRecdTP | DocObjectLinkCounter | |
| _DocInfoRecord | _DocInfoRecord |
//@AbapCatalog.sqlViewName: 'ADIROBJCR'
//@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Change Record Object Links'
//@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #COMPOSITE
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #L, dataClass: #TRANSACTIONAL}
@Metadata.ignorePropagatedAnnotations: true
// @ObjectModel.writeActiveImplementedBy: 'ABAP:CL_PLM_RAP_PROVIDER_DMS'
//@ObjectModel.transactionalProcessingDelegated: true
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
//@AbapCatalog.preserveKey: true
define view entity A_DocInfoRecdObjLinkChgRecd as select from I_DocInfoRecdObjLinkChgRecdTP as ObjLink
association to parent A_DocumentInfoRecord as _DocInfoRecord on $projection.DocumentInfoRecordDocType = _DocInfoRecord.DocumentInfoRecordDocType
and $projection.DocumentInfoRecordDocNumber = _DocInfoRecord.DocumentInfoRecordDocNumber
and $projection.DocumentInfoRecordDocPart = _DocInfoRecord.DocumentInfoRecordDocPart
and $projection.DocumentInfoRecordDocVersion = _DocInfoRecord.DocumentInfoRecordDocVersion
{
/* Document Info Record key Details */
@ObjectModel.sapObjectNodeTypeReference: 'DocumentInfoRecordDocType'
key ObjLink.DocumentInfoRecordDocType ,//as DocumentInfoRecordDocType,
key ObjLink.DocumentInfoRecordDocNumber ,//as DocumentInfoRecordDocNumber,
key ObjLink.DocumentInfoRecordDocVersion ,//as DocumentInfoRecordDocVersion,
key ObjLink.DocumentInfoRecordDocPart ,//as DocumentInfoRecordDocPart,
/* Object Type and Object Key Details */
@ObjectModel.sapObjectNodeTypeReference: 'LinkedSAPObject'
key ObjLink.LinkedSAPObject as LinkedSAPObject,
key ObjLink.LinkedSAPObjectKey as LinkedSAPObjectKey,
key ObjLink.DocObjectLinkCounter as DocObjectLinkCounter,
//Associations
_DocInfoRecord
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_DOCINFORECDOBJLINKCHGRECDTP"
],
"ASSOCIATED":
[
"A_DOCUMENTINFORECORD"
],
"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