I have looked through numerous blogs but I am still confused.
Calculation Manager Execute MaxL and MDX Data Copy ~ Oracle - Hyperion Labs......
and
http://camerons-blog-for-essbase-hackers.blogspot.com/2014/07/calculation-manager-bso-planning-and.html
I am trying to use the @CalcMgrExecuteMaxLFile(user, password, maxlFileName, arguments, asynchronous) and it's RUNJAVA com.hyperion.calcmgr.common.cdf.MaxLFunctions.runMaxLFile(String,String,String[],String)
It's not working for me.
I put in the parameters as it called @CalcMgrExecuteMaxLFile(admin, password, D:\Sample_Basic.mxl, CRASH, false). That didn't work. Then I also tried to perform a calculation script with the RUNJAVA and passing the same parameters, still no fix. Is Oracle going to release documentation on these CDF's? Or can one of those two bloggers help me understand my flaws? i have tried to create a very basic script just to test this out since I think the functionality in 11.1.2.3 would be great but from that version on I haven't gotten it to work. Below is the my syntax for Sample Basic
FIX("Year)
@CalcMgrExecuteMaxLFile(admin, password, D:\Sample_Basic.mxl, CRASH, false)
"Sales";
ENDFIX
I have tried this in a Business Rule and I have tried this in a calculation script.
FIX("Year)
com.hyperion.calcmgr.common.cdf.MaxLFunctions.runMaxLFile(admin, password, D:\Sample_Basic.mxl, CRASH, false)
"Sales";
ENDFIX
Still neither is working. Can someone guide me down the right path.
$1 - username
$2 - password
$3 - server
Those 3 above are the only parameters I am passing in the maxl file.
Please advise.