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
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":""
}
}*/