A_DocInfoRecdObjLinkBOM

DDL: A_DOCINFORECDOBJLINKBOM SQL: ADIROBJBOM Type: view_entity COMPOSITE Package: CV_VDM_API

Bill of Material Object Links

A_DocInfoRecdObjLinkBOM is a Composite CDS View that provides data about "Bill of Material Object Links" in SAP S/4HANA. It reads from 1 data source (I_DocInfoRecdObjLinkBOMTP) and exposes 8 fields with key fields DocumentInfoRecordDocType, DocumentInfoRecordDocNumber, DocumentInfoRecordDocVersion, DocumentInfoRecordDocPart, LinkedSAPObject. Part of development package CV_VDM_API.

Data Sources (1)

SourceAliasJoin Type
I_DocInfoRecdObjLinkBOMTP ObjLink from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Bill of Material Object Links view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY DocumentInfoRecordDocType I_DocInfoRecdObjLinkBOMTP DocumentInfoRecordDocType
KEY DocumentInfoRecordDocNumber I_DocInfoRecdObjLinkBOMTP DocumentInfoRecordDocNumber
KEY DocumentInfoRecordDocVersion I_DocInfoRecdObjLinkBOMTP DocumentInfoRecordDocVersion
KEY DocumentInfoRecordDocPart I_DocInfoRecdObjLinkBOMTP DocumentInfoRecordDocPart
KEY LinkedSAPObject I_DocInfoRecdObjLinkBOMTP LinkedSAPObject
KEY LinkedSAPObjectKey I_DocInfoRecdObjLinkBOMTP LinkedSAPObjectKey
KEY DocObjectLinkCounter I_DocInfoRecdObjLinkBOMTP DocObjectLinkCounter
_DocInfoRecord _DocInfoRecord
//@AbapCatalog.sqlViewName: 'ADIROBJBOM'

//@AbapCatalog.compiler.compareFilter: true

@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Bill of Material Object Links'
@VDM.viewType: #COMPOSITE
//@ClientHandling.algorithm: #SESSION_VARIABLE

@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.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_DocInfoRecdObjLinkBOM as select from I_DocInfoRecdObjLinkBOMTP 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

}