R_PURORDEXTERNALREFERENCE

CDS View

PO External References

R_PURORDEXTERNALREFERENCE is a CDS View in S/4HANA. PO External References. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
R_PurOrdExternalReferenceTP view_entity from TRANSACTIONAL PO external References on header level
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #BLOCKED_DATA_EXCLUDED
@EndUserText.label: 'PO External References'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #X,
  sizeCategory: #L,
  dataClass: #TRANSACTIONAL
}
@VDM.lifecycle.contract.type:#SAP_INTERNAL_API
@VDM.viewType: #BASIC

define view entity R_PurOrdExternalReference as select from I_ExternalRefForPurgDoc as ExtRef

 inner join R_PurchaseOrder as PO on ExtRef.PurchasingDocumentUniqueID = PO.PurchaseOrder
 
 {
   key PO.PurchaseOrder,
   key ExtRef.LinkType, 
   key ExtRef.SequenceNumber as PurgExtRefSequenceNumber,
   
   ExtRef.PurgDocExternalReference,
   ExtRef.PurgDocExternalSystem,
   ExtRef.PurgDocExtReferenceNodeType,
   
   PO.PurchaseOrderType,
   PO.PurchasingOrganization,
   PO.PurchasingGroup
}
where ExtRef.SAPObjectNodeType = 'PurchaseOrder'