C_PartnerFunctionValHelp

DDL: C_PARTNERFUNCTIONVALHELP SQL: CPARTFUNCVH Type: view CONSUMPTION Package: ODATA_MM_PUR_CTRMASS_UPDATE

Partner Function Value Help

C_PartnerFunctionValHelp is a Consumption CDS View that provides data about "Partner Function Value Help" in SAP S/4HANA. It reads from 1 data source (I_PartnerFunction) and exposes 3 fields with key field PartnerFunction. Part of development package ODATA_MM_PUR_CTRMASS_UPDATE.

Data Sources (1)

SourceAliasJoin Type
I_PartnerFunction I_PartnerFunction from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CPARTFUNCVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Partner Function Value Help view
Consumption.ranked true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PartnerFunction
SDDocumentPartnerType SDDocumentPartnerType
PartnerFunctionName
@AbapCatalog.sqlViewName: 'CPARTFUNCVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #CONSUMPTION
@Search.searchable: true
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Partner Function Value Help'
@Consumption.ranked: true
define view C_PartnerFunctionValHelp
  as select from I_PartnerFunction
{
      @ObjectModel.text.element:  [ 'PartnerFunctionName' ]
      @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
  key cast(PartnerFunction as parvw_unv) as PartnerFunction,
      SDDocumentPartnerType,

      @Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8 }
      @Semantics.text: true
      _Text[ 1:Language = $session.system_language ].PartnerFunctionName
}