This is the definition of a TEMP-TABLE
named ttTempTable with three fields. NO-UNDO
indicates that no undo handling is needed (this is usually what you want to do unless you really need the opposite).
DEFINE TEMP-TABLE ttTempTable NO-UNDO
FIELD field1 AS INTEGER
FIELD field2 AS CHARACTER
FIELD field3 AS LOGICAL.