The CURRENT_TIME function returns the current local time.
This example creates a table of invoices and inserts the current time into the INV_DATE column:
ARRAY STRING(30;aDate;0)
Begin SQL
CREATE TABLE INVOICES
(INV_DATE VARCHAR(40));
INSERT INTO INVOICES
(INV_DATE)
VALUES (CURRENT_TIME());
SELECT *
FROM INVOICES
INTO :aDate;
End SQL