I_BONDCONDITIONHEADER

CDS View

The Security Condition Header

I_BONDCONDITIONHEADER is a CDS View in S/4HANA. The Security Condition Header. It contains 6 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_SecurityClassConditionHeader view_entity inner COMPOSITE Security Class Condition Header

Fields (6)

KeyField CDS FieldsUsed in Views
EffectiveInterestMethod EffectiveInterestMethod 1
EffectiveInterestRate EffectiveInterestRate 1
InterestCalculationMethod InterestCalculationMethod 1
ScrtyClInterestIsDiscounted ScrtyClInterestIsDiscounted 1
ScrtyClInterestSettlementFrqcy ScrtyClInterestSettlementFrqcy 1
SecurityClassRepaymentType SecurityClassRepaymentType 1
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'The Security Condition Header'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #A,
  sizeCategory: #L,
  dataClass: #MASTER
}
@VDM.viewType: #BASIC
define view entity I_BondConditionHeader
  as select from vzzkoko as BondConditionHeader

  association [1..1] to I_SecurityClassBasic as _SecurityClassBasic on $projection.SecurityClass = _SecurityClassBasic.SecurityClass

{
  key BondConditionHeader.rkey1                               as SecurityClass,
      cast(case
        when BondConditionHeader.sincl = '1' then 'X'
        else ''
      end as ftr_sc_final_due_dte_incld_ind preserving type ) as IntrstCalcFnlDuDteIsIncld,
      BondConditionHeader.szbmeth                             as InterestCalculationMethod,
      @Semantics.booleanIndicator: true
      cast(case
        when BondConditionHeader.sdisko = '1' then 'X'
        else ''
      end as ftr_sc_interest_discount_ind preserving type )   as ScrtyClInterestIsDiscounted,
      BondConditionHeader.seffmeth                            as EffectiveInterestMethod,
      BondConditionHeader.zvrhyeff                            as ScrtyClInterestSettlementFrqcy,
      BondConditionHeader.peffzins                            as EffectiveInterestRate,
      BondConditionHeader.stilgart                            as SecurityClassRepaymentType,

      _SecurityClassBasic
}