Database Replication Error

1
Every time I try to use the database replication module to import some data and choose an association to import I get the following error in the console. Anyone else having similar problems trying to import using a association? com.mendix.core.CoreException: Exception occurred in action 'Microflow [DatabaseReplication.IVKImportTableMapping]', all database changes executed by this action were rolled back at com.mendix.core.actionmanagement.CoreAction.d(SourceFile:553) Caused by: com.mendix.core.CoreException: Exception occurred in microflow 'DatabaseReplication.IVKImportTableMapping' for activity 'Call 'ImportByMapping'', all database changes executed by this microflow were rolled back at kT.b(SourceFile:252) Caused by: com.mendix.core.CoreException: java.lang.NullPointerException: Name is null at iw.b(SourceFile:167) Caused by: java.lang.NullPointerException: Name is null at java.lang.Enum.valueOf(Enum.java:195) at databasereplication.proxies.YesNo.valueOf(YesNo.java:1) at databasereplication.actions.ImportByMapping.importFromDatabase(ImportByMapping.java:125) at databasereplication.actions.ImportByMapping.executeAction(ImportByMapping.java:74) at databasereplication.actions.ImportByMapping.executeAction(ImportByMapping.java:52) at com.mendix.systemwideinterfaces.core.UserAction.execute(SourceFile:49) at com.mendix.core.actionmanagement.CoreAction.call(SourceFile:473) at iw.b(SourceFile:155) at com.mendix.core.Core.execute(SourceFile:191) at hl.a(SourceFile:70) at kT.a(SourceFile:67) at eU.executeAction(SourceFile:96) at com.mendix.systemwideinterfaces.core.UserAction.execute(SourceFile:49) at com.mendix.core.actionmanagement.CoreAction.call(SourceFile:473) at iw.b(SourceFile:155) at com.mendix.core.Core.execute(SourceFile:191) at dD.execute(SourceFile:183) at jx.a(SourceFile:299) at jx.a(SourceFile:230) at jx.processRequest(SourceFile:174) at fI.a(SourceFile:71) at com.mendix.core.MxRuntime.processRequest(SourceFile:938) at com.mendix.m2ee.server.handler.RuntimeHandler.handle(RuntimeHandler.java:42) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:113) at org.eclipse.jetty.server.Server.handle(Server.java:334) at org.eclipse.jetty.server.HttpConnection.handleRequest(HttpConnection.java:559) at org.eclipse.jetty.server.HttpConnection$RequestHandler.content(HttpConnection.java:1007) at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:747) at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:209) at org.eclipse.jetty.server.HttpConnection.handle(HttpConnection.java:406) at org.eclipse.jetty.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:462) at org.eclipse.jetty.util.thread.QueuedThreadPool$2.run(QueuedThreadPool.java:436) at java.lang.Thread.run(Thread.java:662)
asked
1 answers
1

This occurred because i had copied some of the entitys to another module and the datagrid was referenced to the copied version which did not have associations to all of the required entities.

answered