R_SrcgSuplrListBusinessPartner

DDL: R_SRCGSUPLRLISTBUSINESSPARTNER SQL: RSRCSLBUPA Type: view BASIC

Bus Partner for Sourcing Supplier List

R_SrcgSuplrListBusinessPartner is a Basic CDS View that provides data about "Bus Partner for Sourcing Supplier List" in SAP S/4HANA. It reads from 1 data source (mmsrcslbuspart) and exposes 27 fields with key field SrcgSuplrListBusPartUUID. It has 8 associations to related views.

Data Sources (1)

SourceAliasJoin Type
mmsrcslbuspart mmsrcslbuspart from

Associations (8)

CardinalityTargetAliasCondition
[1..1] R_SourcingSupplierList _SourcingSupplierList $projection.SourcingSupplierListUUID = _SourcingSupplierList.SourcingSupplierListUUID
[1..1] I_BusinessPartner _BusinessPartner $projection.BusinessPartner = _BusinessPartner.BusinessPartner
[1..1] I_SupplierToBusinessPartner _SupplierToBusinessPartner $projection.BusinessPartnerUUID = _SupplierToBusinessPartner.BusinessPartnerUUID
[1..1] I_Supplier _Supplier $projection.Supplier = _Supplier.Supplier
[1..1] I_SuplrContactCard _SuplrContactCard $projection.Supplier = _SuplrContactCard.ContactCardID
[1..1] I_BusinessPartnerAddress _BusinessPartnerAddress $projection.BusinessPartner = _BusinessPartnerAddress.BusinessPartner and $projection.AddressNumber = _BusinessPartnerAddress.AddressNumber
[1..1] I_SupplierList _SupplierList $projection.SourceSupplierListUUID = _SupplierList.SupplierListUUID
[0..1] I_SrcgSuplrListSuplrSourceType _SrcgSuplrListSuplrSourceType $projection.SourceSupplierListType = _SrcgSuplrListSuplrSourceType.SourceSupplierListType

Annotations (12)

NameValueLevelField
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName RSRCSLBUPA view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Bus Partner for Sourcing Supplier List view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view

Fields (27)

KeyFieldSource TableSource FieldDescription
KEY SrcgSuplrListBusPartUUID srcgsuplrlistbuspartuuid Business Partner GUID
BusinessPartnerUUID businesspartneruuid UUID
BusinessPartner businesspartner Issuing Authority
Supplier _SupplierToBusinessPartner Supplier Supplier
AddressNumber addressnumber Src Address No
SupplierCountryGroup suppliercountrygroup Country/Region Group
SourcingSupplierListUUID sourcingsupplierlistuuid UUID of Sourcing Supplier List
SuplrListSupplierIsMandatory suplrlistsupplierismandatory Mandatory Supplier
BusinessPartnerIsBlocked _BusinessPartner BusinessPartnerIsBlocked Central Block
SuplrListReferenceObjectUUID suplrlistreferenceobjectuuid Ref Object UUID
SupplierListReferenceObject supplierlistreferenceobject Reference Object
SuplrListReferenceObjectType suplrlistreferenceobjecttype Ref Obj Type for Sourcing Supplier List
SourceSupplierListUUID sourcesupplierlistuuid Src Suplr List UUID
SourceSupplierListType sourcesupplierlisttype Source Supplier List Type
SupplierListUpdateType supplierlistupdatetype Update Type
IsDeleted isdeleted TRUE
SuplrListSuplrDeltnReasonText suplrlistsuplrdeltnreasontext Supplier Deletion Reason
SuplrListSupplierAddedByUser suplrlistsupplieraddedbyuser Purchaser Resp
SupplierListName _SupplierList SupplierListName Supplier List Name
_SourcingSupplierList _SourcingSupplierList
_BusinessPartner _BusinessPartner
_Supplier _Supplier
_BusinessPartnerAddress _BusinessPartnerAddress
_SupplierList _SupplierList
_SrcgSuplrListSuplrSourceType _SrcgSuplrListSuplrSourceType
_SupplierToBusinessPartner _SupplierToBusinessPartner
_SuplrContactCard _SuplrContactCard

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 R_SrcgSuplrListBusinessPartner.
-- 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: RSRCSLBUPA

CREATE VIEW R_SrcgSuplrListBusinessPartner AS
SELECT
  SrcgSuplrListBusPartUUID,
  BusinessPartnerUUID,
  BusinessPartner,
  _SupplierToBusinessPartner.Supplier AS Supplier,
  AddressNumber,
  SupplierCountryGroup,
  SourcingSupplierListUUID,
  SuplrListSupplierIsMandatory,
  _BusinessPartner.BusinessPartnerIsBlocked AS BusinessPartnerIsBlocked,
  SuplrListReferenceObjectUUID,
  SupplierListReferenceObject,
  SuplrListReferenceObjectType,
  SourceSupplierListUUID,
  SourceSupplierListType,
  SupplierListUpdateType,
  IsDeleted,
  SuplrListSuplrDeltnReasonText,
  SuplrListSupplierAddedByUser,
  _SupplierList.SupplierListName AS SupplierListName
FROM mmsrcslbuspart
LEFT OUTER JOIN R_SourcingSupplierList AS _SourcingSupplierList ON SourcingSupplierListUUID = _SourcingSupplierList.SourcingSupplierListUUID  -- association [1..1]
LEFT OUTER JOIN I_BusinessPartner AS _BusinessPartner ON BusinessPartner = _BusinessPartner.BusinessPartner  -- association [1..1]
LEFT OUTER JOIN I_SupplierToBusinessPartner AS _SupplierToBusinessPartner ON BusinessPartnerUUID = _SupplierToBusinessPartner.BusinessPartnerUUID  -- association [1..1]
LEFT OUTER JOIN I_Supplier AS _Supplier ON Supplier = _Supplier.Supplier  -- association [1..1]
LEFT OUTER JOIN I_SuplrContactCard AS _SuplrContactCard ON Supplier = _SuplrContactCard.ContactCardID  -- association [1..1]
LEFT OUTER JOIN I_BusinessPartnerAddress AS _BusinessPartnerAddress ON BusinessPartner = _BusinessPartnerAddress.BusinessPartner AND AddressNumber = _BusinessPartnerAddress.AddressNumber  -- association [1..1]
LEFT OUTER JOIN I_SupplierList AS _SupplierList ON SourceSupplierListUUID = _SupplierList.SupplierListUUID  -- association [1..1]
LEFT OUTER JOIN I_SrcgSuplrListSuplrSourceType AS _SrcgSuplrListSuplrSourceType ON SourceSupplierListType = _SrcgSuplrListSuplrSourceType.SourceSupplierListType  -- association [0..1]
;