I_FinancialInstrAssignment

DDL: I_FINANCIALINSTRASSIGNMENT SQL: IFININSTRASSGMT Type: view BASIC Package: FTTR_CORE

Assignment

I_FinancialInstrAssignment is a Basic CDS View that provides data about "Assignment" in SAP S/4HANA. It reads from 1 data source (trbac_assign) and exposes 2 fields with key field FinancialInstrumentAssignment. It has 1 association to related views. Part of development package FTTR_CORE.

Data Sources (1)

SourceAliasJoin Type
trbac_assign trbac_assign from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_FinancialInstrAssignmentText _Text $projection.FinancialInstrumentAssignment = _Text.FinancialInstrumentAssignment

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IFININSTRASSGMT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.representativeKey FinancialInstrumentAssignment view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
EndUserText.label Assignment view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY FinancialInstrumentAssignment assignment
_Text _Text
@AbapCatalog.sqlViewName: 'IFININSTRASSGMT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'FinancialInstrumentAssignment'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
@EndUserText.label: 'Assignment'
define view I_FinancialInstrAssignment
  as select from trbac_assign
  association [0..*] to I_FinancialInstrAssignmentText as _Text on $projection.FinancialInstrumentAssignment = _Text.FinancialInstrumentAssignment
{
  @Search: {
    defaultSearchElement: true,
  //  ranking: #HIGH,

    fuzzinessThreshold: 0.8
  }
  @ObjectModel.text.association: '_Text'
  key assignment as FinancialInstrumentAssignment,
  _Text
}