A_SupplierPartnerFunc

DDL: A_SUPPLIERPARTNERFUNC SQL: ASUPLRPARTFUNC Type: view BASIC Package: ODATA_MASTER_DATA_BP

Purchasing Partner Functions

A_SupplierPartnerFunc is a Basic CDS View that provides data about "Purchasing Partner Functions" in SAP S/4HANA. It reads from 1 data source (I_SupplierPartnerFunc) and exposes 12 fields with key fields Supplier, PurchasingOrganization, SupplierSubrange, Plant, PartnerFunction. Part of development package ODATA_MASTER_DATA_BP.

Data Sources (1)

SourceAliasJoin Type
I_SupplierPartnerFunc I_SupplierPartnerFunc from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ASUPLRPARTFUNC view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Purchasing Partner Functions view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY Supplier Supplier Supplier
KEY PurchasingOrganization PurchasingOrganization Purchasing Organization
KEY SupplierSubrange SupplierSubrange Suppl. Subrange
KEY Plant Plant Valuation Area
KEY PartnerFunction PartnerFunction Partner Functn
KEY PartnerCounter PartnerCounter Partner counter
DefaultPartner DefaultPartner Default Partner
CreationDate CreationDate Time Stamp
CreatedByUser CreatedByUser User Name
ReferenceSupplier ReferenceSupplier Ref. to suplr
AuthorizationGroup AuthorizationGroup AuthorizGroup
_SupplierPurchasing _SupplierPurchasing

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 A_SupplierPartnerFunc.
-- 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: ASUPLRPARTFUNC

CREATE VIEW A_SupplierPartnerFunc AS
SELECT
  Supplier,
  PurchasingOrganization,
  SupplierSubrange,
  Plant,
  PartnerFunction,
  PartnerCounter,
  DefaultPartner,
  CreationDate,
  CreatedByUser,
  ReferenceSupplier,
  AuthorizationGroup
FROM I_SupplierPartnerFunc
;