I_SecurityClassStdVH

DDL: I_SECURITYCLASSSTDVH SQL: IFTRSC__VH Type: view COMPOSITE Package: FTR_SECURITIES_CORE

Security Class

I_SecurityClassStdVH is a Composite CDS View that provides data about "Security Class" in SAP S/4HANA. It reads from 1 data source (I_SecurityClassBasic) and exposes 3 fields with key field SecurityClass. Part of development package FTR_SECURITIES_CORE.

Data Sources (1)

SourceAliasJoin Type
I_SecurityClassBasic I_SecurityClassBasic from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IFTRSC__VH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey SecurityClass view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Security Class view
Search.searchable true view
Consumption.ranked true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SecurityClass SecurityClass
SecurityClassName SecurityClassName
FinancialInstrumentProductType FinancialInstrumentProductType
//GENERATED:001:E6ExH29r7jUzzJ}fF{7DBm

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

@VDM.viewType: #COMPOSITE

@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.representativeKey: 'SecurityClass'

@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #L

@AccessControl.authorizationCheck: #CHECK

@ClientHandling.algorithm: #SESSION_VARIABLE

@Metadata.ignorePropagatedAnnotations: true

@EndUserText.label: 'Security Class'
@Search.searchable: true
@Consumption.ranked: true

define view I_SecurityClassStdVH
  as select from I_SecurityClassBasic
{
      @ObjectModel.text.element: ['SecurityClassName']
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
      @Search.fuzzinessThreshold: 0.8
  key SecurityClass,

      @Search.defaultSearchElement: true
      @Search.ranking: #LOW
      @Search.fuzzinessThreshold: 0.8
      SecurityClassName,
      @Consumption.hidden: true
      @Search.defaultSearchElement: true
      @Search.ranking: #LOW
      FinancialInstrumentProductType
}