Try this
SELECT * from USER1.EMPLOYEE;
This might happen if there is no public synonym present for EMPLOYEE table. So you need to refer using the owner.object
If not getting results, please post the results of
SELECT
OWNER,
TABLE_NAME
FROM
ALL_TABLES
WHERE
TABLE_NAME IN ('EMPLOYEE');