When displaying the "SQL without schema" in the Alter-Table dialog, the schema name is not omitted for ForeignKey Contraints in the referenced table.
ALTER TABLE TABLE_A
ADD CONSTRAINT FK_ID_TABLE_B
FOREIGN KEY (ID_TABLE_B)
REFERENCES SCHEMA.TABLE_B (ID)
ENABLE VALIDATE;