loadData in JAVA API
Summary
loadData in JAVA APIContent
I am playing around with the Essbase Java API. I am trying to load data to the Essbase cube using the loadData method. It's an overloaded method, I am trying the one where you can load data using an "update specification as a single string"
loadData
void loadData(boolean store, boolean unlock, java.lang.String updSpec) throws com.essbase.api.base.EssException
- Updates data to cube from the specification string.
-
- Parameters:
store
- Controls storage of data. If true data is stored in the server; if false no data is stored.unlock
- Controls unlocking of data blocks. If true all relevant blocks which are locked will be unlocked (after data is stored, if necessary). If false no blocks are unlocked.
0