I_TimeToMaturity

DDL: I_TIMETOMATURITY Type: view BASIC Package: LOG_CMM_RUNTIME_VALUATION

Table for Time to Maturity (Tenor)

I_TimeToMaturity is a Basic CDS View (Dimension) that provides data about "Table for Time to Maturity (Tenor)" in SAP S/4HANA. It reads from 1 data source (tbac_tenor) and exposes 5 fields with key field TimeToMaturity. Part of development package LOG_CMM_RUNTIME_VALUATION.

Data Sources (1)

SourceAliasJoin Type
tbac_tenor tbac_tenor from

Annotations (13)

NameValueLevelField
EndUserText.label Table for Time to Maturity (Tenor) view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
Metadata.allowExtensions true view
Analytics.dataCategory #DIMENSION view
AbapCatalog.sqlViewName ITIMETOMATURITY view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.representativeKey TimeToMaturity view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY TimeToMaturity tenor
NumberOfYearsOfTimeToMaturity tenor_years
NumberOfMonthsOfTimeToMaturity tenor_months
NumberOfDaysOfTimeToMaturity tenor_days
MaturitySelectionRoutine matselrtn
@EndUserText.label: 'Table for Time to Maturity (Tenor)'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #CHECK
@Metadata.allowExtensions:true
@Analytics.dataCategory: #DIMENSION
@AbapCatalog: { sqlViewName: 'ITIMETOMATURITY',
                compiler.compareFilter: true, 
                preserveKey:true }
@VDM.viewType: #BASIC
@ObjectModel.usageType:{  sizeCategory: #L,
                          serviceQuality: #A,
                          dataClass: #TRANSACTIONAL }
@ObjectModel.representativeKey: 'TimeToMaturity'
define view I_TimeToMaturity
  as select from tbac_tenor
{
  key tenor                                               as TimeToMaturity,
      tenor_years                                         as NumberOfYearsOfTimeToMaturity,
      tenor_months                                        as NumberOfMonthsOfTimeToMaturity,
      tenor_days                                          as NumberOfDaysOfTimeToMaturity,
      matselrtn                                           as MaturitySelectionRoutine 
}