I_SupplierToBusinessPartner

DDL: I_SUPPLIERTOBUSINESSPARTNER SQL: ICVIVENDLINK Type: view BASIC

Supplier to BusinessPartner Relationship

I_SupplierToBusinessPartner (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

SupplierBusinessPartner · Database & Data Management

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.

SAP Help Documentation

CategoryCDS Views for Business Partner
Data CategoryDimension
StatusReleased
Data Extraction TypeFull (physical deletions are possible in source tables) Delta: <Technical name of data field>
Purpose
This CDS view retrieves the data of supplier to business partner mapping.

Structure
Object types This view relates to the following SAP object types: Supplier Main CDS parameters and filters Measures and attributes Some important measures and attributes are: Supplier Business Partner UUID

SAP Business Warehouse (SAP BW) Extraction
Note The corresponding DataSource (Extractor) and this CDS view may have different functionalities. In case you are interested in the details of the DataSource, see the related documentation on the SAP Help Portal at https://help.sap.com/viewer/p/BI_CONTENT_757 under Application Help SAP Library BI Content . For more information on extraction, see Extracting Data Through CDS Views to SAP BW/4HANA .

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessDatabase & Data Management
Application ComponentLO-MD-BP
CapabilitiesData Source in SQL Select, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities, Analytical Dimension, Data Source for Data Extraction
PackageDatabase & Data Management for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view retrieves the data of supplier to business partner mapping. </p>

Documentation

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 (18)

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.representativeKey BusinessPartnerUUID view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartnerUUID partner_guid Business Partner GUID
Supplier cvi_vend_link vendor Account Number of Supplier
_Supplier _Supplier
_BusinessPartner _BusinessPartner

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_SupplierToBusinessPartner.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: ICVIVENDLINK

CREATE VIEW I_SupplierToBusinessPartner AS
SELECT
  partner_guid AS BusinessPartnerUUID,
  cvi_vend_link.vendor AS Supplier
FROM cvi_vend_link
LEFT OUTER JOIN I_BusinessPartner AS _BusinessPartner ON BusinessPartnerUUID = _BusinessPartner.BusinessPartnerUUID  -- association [1..1]
LEFT OUTER JOIN I_Supplier AS _Supplier ON Supplier = _Supplier.Supplier  -- association [1..1]
;