Excel export template manager 7.13 compilation errors

0
Hi Guys, We've got compilation errors when we try and compile our app with the newly added Excel Exporter Template Manager module. We created a 6.10 app and added the module then migrated it to 7.13.1. However, we're now getting the following errors. Buildfile: C:\Users\ateale\Documents\Mendix\PrimarkPSM-main_2\deployment\build_core.xml compile:     [javac] Compiling 672 source files to C:\Users\ateale\Documents\Mendix\PrimarkPSM-main_2\deployment\run\bin     [javac] C:\Users\ateale\Documents\Mendix\PrimarkPSM-main_2\javasource\excelexportertemplatemanager\actions\Equals.java:22: error: cannot find symbol     [javac] import com.mendix.core.objectmanagement.MendixIdentifier;     [javac]                                        ^     [javac]   symbol:   class MendixIdentifier     [javac]   location: package com.mendix.core.objectmanagement     [javac] C:\Users\ateale\Documents\Mendix\PrimarkPSM-main_2\javasource\excelexportertemplatemanager\actions\Equals.java:245: error: cannot find symbol     [javac]                 if (sourceValue instanceof MendixIdentifier && targetValue instanceof MendixIdentifier) {     [javac]                                            ^     [javac]   symbol:   class MendixIdentifier     [javac]   location: class Equals     [javac] C:\Users\ateale\Documents\Mendix\PrimarkPSM-main_2\javasource\excelexportertemplatemanager\actions\Equals.java:245: error: cannot find symbol     [javac]                 if (sourceValue instanceof MendixIdentifier && targetValue instanceof MendixIdentifier) {     [javac]                                                                                       ^     [javac]   symbol:   class MendixIdentifier     [javac]   location: class Equals     [javac] C:\Users\ateale\Documents\Mendix\PrimarkPSM-main_2\javasource\excelexportertemplatemanager\actions\Equals.java:246: error: cannot find symbol     [javac]                     MendixIdentifier srcId = (MendixIdentifier)sourceValue;     [javac]                     ^     [javac]   symbol:   class MendixIdentifier     [javac]   location: class Equals     [javac] C:\Users\ateale\Documents\Mendix\PrimarkPSM-main_2\javasource\excelexportertemplatemanager\actions\Equals.java:246: error: cannot find symbol     [javac]                     MendixIdentifier srcId = (MendixIdentifier)sourceValue;     [javac]                                               ^     [javac]   symbol:   class MendixIdentifier     [javac]   location: class Equals     [javac] C:\Users\ateale\Documents\Mendix\PrimarkPSM-main_2\javasource\excelexportertemplatemanager\actions\Equals.java:247: error: cannot find symbol     [javac]                     MendixIdentifier tarId = (MendixIdentifier)targetValue;     [javac]                     ^     [javac]   symbol:   class MendixIdentifier     [javac]   location: class Equals     [javac] C:\Users\ateale\Documents\Mendix\PrimarkPSM-main_2\javasource\excelexportertemplatemanager\actions\Equals.java:247: error: cannot find symbol     [javac]                     MendixIdentifier tarId = (MendixIdentifier)targetValue;     [javac]                                               ^     [javac]   symbol:   class MendixIdentifier     [javac]   location: class Equals     [javac] Note: Some input files use or override a deprecated API.     [javac] Note: Recompile with -Xlint:deprecation for details.     [javac] 7 errors BUILD FAILED C:\Users\ateale\Documents\Mendix\PrimarkPSM-main_2\deployment\build_core.xml:29: Compile failed; see the compiler error output for details. Total time: 9 seconds   Does anyone have any suggestions on how to fix this?
asked
3 answers
1

Deploy your application for eclipse, import the project within eclipse.

Sometimes Mendix changes the input parameters for java actions. Don't know why exactly (if someone knows please share), but fixed it by changing the usage of the input variables within the java code.

answered
0

Did you upgrade your module from the AppStore?

answered
0

That works, thanks Stèphan. :)

answered