C_BPPartnerFunctionNumberVH

DDL: C_BPPARTNERFUNCTIONNUMBERVH SQL: CBPPFNUMVH Type: view CONSUMPTION

Business Partners

C_BPPartnerFunctionNumberVH is a Consumption CDS View that provides data about "Business Partners" in SAP S/4HANA. It reads from 1 data source (P_BPPartnerFunctionNumber) and exposes 6 fields with key fields BusinessPartner, PartnerFunctionType.

Data Sources (1)

SourceAliasJoin Type
P_BPPartnerFunctionNumber P_BPPartnerFunctionNumber from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CBPPFNUMVH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey BusinessPartner view
EndUserText.label Business Partners view
Search.searchable true view
AccessControl.personalData.blocking #REQUIRED view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #VALUE_HELP view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner BusinessPartner Business Partner
KEY PartnerFunctionType PartnerFunctionType Partner Function Type
OrganizationBPName1 OrganizationBPName1 Last Name/Name 1
OrganizationBPName2 OrganizationBPName2 First Name/Name 2
BusinessPartnerName BusinessPartnerName Extracted Customer Name
IsBusinessPurposeCompleted IsBusinessPurposeCompleted Purpose Completed

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 C_BPPartnerFunctionNumberVH.
-- 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: CBPPFNUMVH

CREATE VIEW C_BPPartnerFunctionNumberVH AS
SELECT
  BusinessPartner,
  PartnerFunctionType,
  OrganizationBPName1,
  OrganizationBPName2,
  BusinessPartnerName,
  IsBusinessPurposeCompleted
FROM P_BPPartnerFunctionNumber
;