I_FinInstrProdTypeValueHelp

DDL: I_FININSTRPRODTYPEVALUEHELP SQL: IFIPTP_VH Type: view BASIC Package: FTTR_CORE

Product Type

I_FinInstrProdTypeValueHelp is a Basic CDS View that provides data about "Product Type" in SAP S/4HANA. It reads from 1 data source (I_FinancialinstrProductType) and exposes 4 fields with key field FinancialInstrumentProductType. Part of development package FTTR_CORE.

Data Sources (1)

SourceAliasJoin Type
I_FinancialinstrProductType I_FinancialinstrProductType from

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName IFIPTP_VH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey FinancialInstrumentProductType view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.modelingPattern #VALUE_HELP_PROVIDER view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
Consumption.ranked true view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Product Type view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY FinancialInstrumentProductType FinancialInstrumentProductType
TreasuryContractType TreasuryContractType
FinancialInstrProductCategory FinancialInstrProductCategory
_Text _Text
@AbapCatalog.sqlViewName: 'IFIPTP_VH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@VDM.viewType: #BASIC
@ObjectModel: { dataCategory: #VALUE_HELP,
                representativeKey: 'FinancialInstrumentProductType',
                usageType.sizeCategory: #M,
                usageType.dataClass: #CUSTOMIZING,
                usageType.serviceQuality: #A,
                supportedCapabilities: [#VALUE_HELP_PROVIDER, #SEARCHABLE_ENTITY],
                modelingPattern: #VALUE_HELP_PROVIDER }
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
@Consumption.ranked: true
@Metadata.ignorePropagatedAnnotations: true
@EndUserText.label: 'Product Type'

define view I_FinInstrProdTypeValueHelp 
  as select from I_FinancialinstrProductType 
{
      @ObjectModel.text.association: '_Text'
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
      @Search.fuzzinessThreshold: 0.8
  key FinancialInstrumentProductType,
      @Search.defaultSearchElement: true
      @Search.ranking: #LOW
      TreasuryContractType,
      @Search.defaultSearchElement: true
      @Search.ranking: #LOW
      FinancialInstrProductCategory,

      _Text
}