C_BPPartnerFunctionNumberVH
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)
| Source | Alias | Join Type |
|---|---|---|
| P_BPPartnerFunctionNumber | P_BPPartnerFunctionNumber | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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 | |||
| IsBusinessPurposeCompleted | IsBusinessPurposeCompleted |
@AbapCatalog.sqlViewName: 'CBPPFNUMVH'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #CONSUMPTION
@ObjectModel.representativeKey: 'BusinessPartner'
@EndUserText.label: 'Business Partners'
@Search.searchable: true
@AccessControl.personalData.blocking: #REQUIRED
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #XXL
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.dataCategory: #VALUE_HELP
define view C_BPPartnerFunctionNumberVH
as select from P_BPPartnerFunctionNumber
{
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.75
@Search.ranking: #HIGH
@ObjectModel.text.element: 'BusinessPartnerName'
@EndUserText.label: 'Business Partner'
@EndUserText.quickInfo: 'Business Partner Number'
key BusinessPartner,
//@Search.defaultSearchElement: true
//@Search.fuzzinessThreshold: 0.75
//@Search.ranking: #HIGH
@EndUserText.label: 'Partner Function Type'
@EndUserText.quickInfo: 'Partner Function Type'
key PartnerFunctionType,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.75
@Search.ranking: #HIGH
@EndUserText.label: 'Last Name/Name 1'
@EndUserText.quickInfo: 'Last Name/Name 1'
OrganizationBPName1,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.75
@Search.ranking: #HIGH
@EndUserText.label: 'First Name/Name 2'
@EndUserText.quickInfo: 'First Name/Name 2'
OrganizationBPName2,
@Search.defaultSearchElement: false
@Semantics.text
@EndUserText.quickInfo: 'Business Partner Name'
BusinessPartnerName,
@UI.hidden: true
IsBusinessPurposeCompleted
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_BPPARTNERFUNCTIONNUMBER"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA