YEAR()
The YEAR() operator
extracts the year of a date time expression.
Syntax
YEAR ( expr ) - expr is a date / time expression.
 
Usage
Returns an integer corresponding to the year portion of its operand.
Example
MAIN
  DISPLAY YEAR ( TODAY )
  DISPLAY YEAR ( CURRENT )
END MAIN