A_CustSalesPartnerFunc

DDL: A_CUSTSALESPARTNERFUNC SQL: ACUSTPARTNERFUNC Type: view BASIC

Sales Partner Functions

A_CustSalesPartnerFunc is a Basic CDS View that provides data about "Sales Partner Functions" in SAP S/4HANA. It reads from 1 data source (I_CustSalesPartnerFunc) and exposes 15 fields with key fields Customer, SalesOrganization, DistributionChannel, Division, PartnerCounter.

Data Sources (1)

SourceAliasJoin Type
I_CustSalesPartnerFunc I_CustSalesPartnerFunc from

Annotations (16)

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

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY Customer Customer Sold-to Party
KEY SalesOrganization SalesOrganization Sales Organization
KEY DistributionChannel DistributionChannel RefDistCh-Cust/Mat.
KEY Division Division Internal Division ID
KEY PartnerCounter PartnerCounter Partner counter
KEY PartnerFunction PartnerFunction Partner Functn
BPCustomerNumber BPCustomerNumber Customer
CustomerPartnerDescription CustomerPartnerDescription Partner desc.
DefaultPartner DefaultPartner Default Partner
Supplier Supplier Supplier
PersonnelNumber PersonnelNumber Personnel No.
ContactPerson ContactPerson Contact Person Key
AddressID AddressID Ship-to address
AuthorizationGroup
_CustomerSalesArea _CustomerSalesArea

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_CustSalesPartnerFunc.
-- 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: ACUSTPARTNERFUNC

CREATE VIEW A_CustSalesPartnerFunc AS
SELECT
  Customer,
  SalesOrganization,
  DistributionChannel,
  Division,
  PartnerCounter,
  PartnerFunction,
  BPCustomerNumber,
  CustomerPartnerDescription,
  DefaultPartner,
  Supplier,
  PersonnelNumber,
  ContactPerson,
  AddressID,
  _CustomerSalesArea._Customer.AuthorizationGroup AS AuthorizationGroup
FROM I_CustSalesPartnerFunc
;