I_SupplierToBusinessPartner

DDL: I_SUPPLIERTOBUSINESSPARTNER SQL: ICVIVENDLINK Type: view BASIC Package: VDM_MD_COMMON

Supplier to BusinessPartner Relationship

I_SupplierToBusinessPartner is a Basic CDS View (Dimension) that provides data about "Supplier to BusinessPartner Relationship" in SAP S/4HANA. It reads from 1 data source (cvi_vend_link) and exposes 4 fields with key field BusinessPartnerUUID. It has 2 associations to related views. Part of development package VDM_MD_COMMON.

Data Sources (1)

SourceAliasJoin Type
cvi_vend_link cvi_vend_link from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_BusinessPartner _BusinessPartner $projection.BusinessPartnerUUID = _BusinessPartner.BusinessPartnerUUID
[1..1] I_Supplier _Supplier $projection.Supplier = _Supplier.Supplier

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName ICVIVENDLINK view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
AccessControl.personalData.blockingIndicator IsBusinessPurposeCompleted view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Supplier to BusinessPartner Relationship view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.sapObjectNodeType.name SupplierBusinessPartner view
ObjectModel.representativeKey BusinessPartnerUUID view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartnerUUID partner_guid
Supplier cvi_vend_link vendor
_Supplier _Supplier
_BusinessPartner _BusinessPartner
@AbapCatalog.sqlViewName: 'ICVIVENDLINK'

@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #REQUIRED
@AccessControl.personalData.blockingIndicator: 'IsBusinessPurposeCompleted'

@Analytics: {
    dataCategory: #DIMENSION,
    dataExtraction: {
       enabled: true,
       delta.changeDataCapture: {
          automatic : true
       }
    }
}

@ClientHandling.algorithm : #SESSION_VARIABLE

@EndUserText.label: 'Supplier to BusinessPartner Relationship'

@Metadata.allowExtensions: true
@Metadata.ignorePropagatedAnnotations: true

@ObjectModel.supportedCapabilities: [#SQL_DATA_SOURCE,
                                     #CDS_MODELING_DATA_SOURCE,
                                     #CDS_MODELING_ASSOCIATION_TARGET,
                                     #ANALYTICAL_DIMENSION,
                                     #EXTRACTION_DATA_SOURCE]  
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION  
@ObjectModel.sapObjectNodeType.name: 'SupplierBusinessPartner'                                                                   
@ObjectModel.representativeKey: 'BusinessPartnerUUID'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MASTER
@AbapCatalog.preserveKey:true
@VDM.viewType: #BASIC
@Consumption.dbHints: [ 'USE_HEX_PLAN' ]
define view I_SupplierToBusinessPartner
  as select from cvi_vend_link
  association [1..1] to I_BusinessPartner as _BusinessPartner on $projection.BusinessPartnerUUID = _BusinessPartner.BusinessPartnerUUID
  association [1..1] to I_Supplier        as _Supplier        on $projection.Supplier = _Supplier.Supplier
  
{
  key partner_guid         as BusinessPartnerUUID,
      cvi_vend_link.vendor as Supplier, 
      _Supplier,
      _BusinessPartner
}