"INSERT INTO DELITM_TABLE (NAME, WHEN) VALUES ('Access Point');"

You are telling Oracle that you are inserting two columns, but you are only providing one value. Here is an example of how to make the insert statement work.

"INSERT INTO DELITM_TABLE (NAME, WHEN) VALUES ('Access Point', SYSDATE);"

SYSDATE is a function that returns the current time.