It is not common to create tables as SYS or SYSTEM in Oracle, as those two accounts are administrators.
Error means that your client created tables as some other database user (other than SYS or SYSTEM)ABCDE.
You should ask your client for user name they have in their database, then you create that user before import. You , then you should also import data as that user, because SYS and SYSTEM have number of tables and you will have hard time finding imported tables.
This should eliminate the error because exported file contains permissions and import is trying to apply them other informations related to user ABCDE that does not exist in database.
Check this question for additional hints: How to determine the Schemas inside an Oracle Data Pump Export file.
