Hello 🙂 I have created forms in which the user can enter data. With collections the information is saved and will be inserted in the corresponding tables after the forms are submitted. Now one column in the table has remained empty and I am not sure how to solve it in APEX. Namely, the table has a foreign key to another table. But the ID of this table is generated only after submitting the forms. Can I solve it, for example, with a trigger that then enters the foreign key into the table after the forms are submitted? Would it be an after insert trigger like this: CREATE OR REPLACE TRIGGER INSERT_FK AFTER INSERT ON TBL1 FOR EACH ROW begin INSERT INTO TBL2 VALUES (:NEW.ID); EXCEPTION WHEN NO_DATA_FOUND THEN DBMS_OUTPUT.put_line (TO_CHAR (SQLERRM (-20299))); WHEN OTHERS THEN DBMS_OUTPUT.put_line (TO_CHAR (SQLERRM (-20298))); end; or is there another better solution for this?