Skip to main content
June 15, 2020

Has anyone written custom translation rules?

  • June 15, 2020
  • 1 reply
  • 0 views
Originally posted by Eric Osmanski

8/1/2018

Has anyone written custom translation rules where they can send me some samples?

1 reply

June 25, 2020
Originally posted by Chul Smith

"Dim strFlowType As Boolean = api.flow.switchType(api.Pov.flow.memberid)
Then for the asset/liability sections, replace the three lines with this condition that takes into account switch type.
If strFlowType Then
strRateType = ""AverageRate""
Dim rate As Decimal = api.FxRates.GetCalculatedFxRate(strRateType, curTimeID, args.FxRateArgs.SourceCurrencyId,args.FxRateArgs.DestCurrencyId)
Return New FxRateResult(rate)
Else
strRateType = ""ClosingRate""
Dim rate As Decimal = api.FxRates.GetCalculatedFxRate(strRateType, curTimeID, args.FxRateArgs.SourceCurrencyId,args.FxRateArgs.DestCurrencyId)
Return New FxRateResult(rate)
End If"