HI Denis,
It sounds like that table was created for an Oracle version less than 12, and now Oracle 12 or newer is using it. You can either drop the table and then Toad will prompt to recreate it, or you can just run this SQL to modify it:
ALTER TABLE TOAD_PLAN_TABLE
MODIFY(OBJECT_OWNER VARCHAR2(128),
OBJECT_NAME VARCHAR2(128));