I_DocInfoRecdObjLinkChgRecdTP

DDL: I_DOCINFORECDOBJLINKCHGRECDTP SQL: IDOCOBJCRWODRTP Type: view TRANSACTIONAL

CDS View for Change Record Object Link

I_DocInfoRecdObjLinkChgRecdTP is a Transactional CDS View that provides data about "CDS View for Change Record Object Link" in SAP S/4HANA. It reads from 1 data source (I_DocumentInfoRecordObjectLink) and exposes 8 fields with key fields DocumentInfoRecordDocType, DocumentInfoRecordDocNumber, DocumentInfoRecordDocVersion, DocumentInfoRecordDocPart, LinkedSAPObject. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_DocumentInfoRecordObjectLink ObjLink from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_DocInfoRecdObjLinkChgRecd _ChangeRecord $projection.LinkedSAPObjectKey = _ChangeRecord.ChangeRecordUUID

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IDOCOBJCRWODRTP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label CDS View for Change Record Object Link view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #TRANSACTIONAL view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY DocumentInfoRecordDocType I_DocumentInfoRecordObjectLink DocumentInfoRecordDocType
KEY DocumentInfoRecordDocNumber I_DocumentInfoRecordObjectLink DocumentInfoRecordDocNumber
KEY DocumentInfoRecordDocVersion I_DocumentInfoRecordObjectLink DocumentInfoRecordDocVersion
KEY DocumentInfoRecordDocPart I_DocumentInfoRecordObjectLink DocumentInfoRecordDocPart
KEY LinkedSAPObject I_DocumentInfoRecordObjectLink LinkedSAPObject
KEY LinkedSAPObjectKey I_DocumentInfoRecordObjectLink LinkedSAPObjectKey
KEY DocObjectLinkCounter I_DocumentInfoRecordObjectLink DocObjectLinkCounter
_ChangeRecord _ChangeRecord
@AbapCatalog.sqlViewName: 'IDOCOBJCRWODRTP'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'CDS View for Change Record Object Link'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #TRANSACTIONAL

@VDM.viewType: #TRANSACTIONAL
@Metadata.ignorePropagatedAnnotations:true
//@ObjectModel.transactionalProcessingEnabled: true

//@ObjectModel.writeActiveImplementedBy: 'ABAP:CL_PLM_RAP_PROVIDER_DMS'

@VDM.lifecycle.contract.type: #SAP_INTERNAL_API

define view I_DocInfoRecdObjLinkChgRecdTP
  as select from I_DocumentInfoRecordObjectLink as ObjLink
  
  association [0..1] to I_DocInfoRecdObjLinkChgRecd as _ChangeRecord on $projection.LinkedSAPObjectKey = _ChangeRecord.ChangeRecordUUID  
  
{
      /*  Document Info Record key Details */
  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 */
  key ObjLink.LinkedSAPObject                as LinkedSAPObject,
  key ObjLink.LinkedSAPObjectKey             as LinkedSAPObjectKey,
  key ObjLink.DocObjectLinkCounter           as DocObjectLinkCounter,
        
      //Associations

      _ChangeRecord
  
}
where
  ObjLink.LinkedSAPObject = 'CR_DOC'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_DOCUMENTINFORECORDOBJECTLINK"
],
"ASSOCIATED":
[
"I_DOCINFORECDOBJLINKCHGRECD"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/