Sample Expressions

This section contains sample expressions that use numeric or string expressions.

Numeric Expression

For a numeric expression, quotes are not required. Numeric operators include integers and real numbers.

if 
     (ffmFrdCard.Score > 900)
then...

String Expression

String expressions require quotes.
if 
    (DBTRAN25.merchantNameId = "Company XYZ")
then...

Numeric Expression with Data String

String operators require quotes regardless of the nature of the data that they are holding. For example, a country code is a numeric value, but it is passed to Falcon as a string element and therefore requires quotes.
if 
    (CRTRAN25.merchantCountryCode = "840") 
then...
  • www.fico.com