Failed to create creation time in APEX report
问题 I am using Oracle APEX to build a interactive report. In the create page I want to inert a field called create_time in the database which is not shown on the create page. Similarly, in the edit page, I want to update a field called update_time in the database. For the edit page, I added a process and set the plsql code to: update table_test t set t.UPDATE_DATE = sysdate where t.ROWID = :P2_ROWID; And this works. However, when it comes to the create page, I set the plsql code to: update table