P_SupplierBusinessPartner

DDL: P_SUPPLIERBUSINESSPARTNER SQL: PSUPBUSPRT Type: view CONSUMPTION

Supplier Business Partner

P_SupplierBusinessPartner is a Consumption CDS View that provides data about "Supplier Business Partner" in SAP S/4HANA. It reads from 1 data source (I_Supplier) and exposes 4 fields with key fields Supplier, BusinessPartnerUUID, BusinessPartner.

Data Sources (1)

SourceAliasJoin Type
I_Supplier I_Supplier from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PSUPBUSPRT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Supplier Business Partner view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #NOT_REQUIRED view
VDM.private true view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Supplier Supplier Supplier
KEY BusinessPartnerUUID
KEY BusinessPartner
_SupplierBankDetails _SupplierBankDetails

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 P_SupplierBusinessPartner.
-- 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: PSUPBUSPRT

CREATE VIEW P_SupplierBusinessPartner AS
SELECT
  Supplier,
  I_Supplier._SupplierToBusinessPartner.BusinessPartnerUUID AS BusinessPartnerUUID,
  I_Supplier._SupplierToBusinessPartner._BusinessPartner.BusinessPartner AS BusinessPartner
FROM I_Supplier
;