It is not failing due to a synonym being used.
Trust the error message - [SoftwareAG][Oracle JDBC Driver][Oracle]ORA-25001: cannot create this trigger type on this type of view.
Based upon this, the synonym used is for a DB view.
A search for the error shows several results including one site that notes: “The Oracle documentation notes that you cannot create a trigger on a view unless it is an instead of trigger”.
My guess is that the adapter notification cannot be set up to create this type of trigger.
I would recommend using only basic notification types. Using the “operation-specific” types like insert, update, etc. requires the DB user have DDL permissions on the DB and schema, which sometimes is frowned upon. Plus, and this is the bigger issue, intentionally/accidentally disabling the notification destroys the DB trigger – meaning you will miss any events while the trigger is disabled, which is most likely undesired.
Using basic notification requires that the trigger and buffer table be created manually, but that is a one-time activity. Then the basic notification can be disabled/enabled at will without disturbing the DB trigger and buffer table at all. And the DB user does not need “excessive” permissions for creating/dropping DB objects.
#Integration-Server-and-ESB#Adapters-and-E-Standards#webMethods