I_ContractAccountPartnerStdVH

DDL: I_CONTRACTACCOUNTPARTNERSTDVH SQL: ICAP__VH Type: view COMPOSITE Package: FKKV

Contract Account Partner

I_ContractAccountPartnerStdVH is a Composite CDS View that provides data about "Contract Account Partner" in SAP S/4HANA. It reads from 1 data source (I_ContractAccountPartner) and exposes 6 fields with key fields ContractAccount, BusinessPartner. Part of development package FKKV.

Data Sources (1)

SourceAliasJoin Type
I_ContractAccountPartner I_ContractAccountPartner from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ICAP__VH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
EndUserText.label Contract Account Partner view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ContractAccount ContractAccount
KEY BusinessPartner BusinessPartner
ContractAccountName ContractAccountName
CAAuthorizationGroup CAAuthorizationGroup
_ContrAcc _ContrAcc
_BusinessPartner _BusinessPartner
//GENERATED:004:29JlHOSX7kU}e4ilsMf2oW

@AbapCatalog.sqlViewName: 'ICAP__VH'
@AbapCatalog.compiler.compareFilter: true

@VDM.viewType: #COMPOSITE

@ObjectModel.dataCategory: #VALUE_HELP

@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #MASTER

@AccessControl.authorizationCheck: #CHECK

@ClientHandling.algorithm: #SESSION_VARIABLE

@Metadata.ignorePropagatedAnnotations: true

@Search.searchable: true

@EndUserText.label: 'Contract Account Partner'
define view I_ContractAccountPartnerStdVH as select from I_ContractAccountPartner {
  @ObjectModel.foreignKey.association: '_ContrAcc'
  @Search : {defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #HIGH}
  key ContractAccount,
  
  @ObjectModel.foreignKey.association: '_BusinessPartner'
  @Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #LOW }
  key BusinessPartner,
  
  @Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #LOW }
  ContractAccountName,
  
  @Consumption.hidden: true
  CAAuthorizationGroup,
  @Consumption.hidden: true
  CAStandardCompanyCode,

  @Consumption.hidden: true
  _ContrAcc,
  @Consumption.hidden: true
  _BusinessPartner
}