Hello,
I am trying to import apache.poi.xssf or hssf lib so that i can work with excel in event script.
I saw this post and it mentioned we need to "extend the Jython classpath to include any JAR files that you're comfortable working with in Jython."
FDMEE generate Excel report
So i used the same code that he had as below:
from sys import path
path.append("C:\Oracle\Middleware\EPMSystem11R1\products\FinancialDataQuality\lib\poi-3.8-20120326.jar")
path.append("C:\Oracle\Middleware\EPMSystem11R1\products\FinancialDataQuality\lib\poi-ooxml-3.8-20120326.jar")
I did a bit search and most of them says it cause by missing the xmlbean file or POI schema file. After i download and load them to lib, still get this:
java.lang.NoClassDefFoundError: java.lang.NoClassDefFoundError: org/openxmlformats/schemas/spreadsheetml/x2006/main/CTDataValidation
Here is all my lib:

Did anybody work with this before? Is this because the wrong version of any jar file?

Thanks!!