Adding Comments to Rules

When writing a rule, you can enter comments to define what is occurring on specific lines of code in a rule.

Comment lines are proceeded by two forward slashes as shown in the following example:
// This rule uses the UDV of a previous date against the current date
if
(
Date_Convert(DBTRAN25.transactionDate) - (ACCT_UDVAcctOpenDate) < 30
)
then
{
TriggerCase(ACCOUNT);
}
Important: Each comment line in a rule must begin with forward slashes. A line return acts as the closing tag for a comment.
  • www.fico.com