Exporting components of DeepSee
Hi community,
When I export the cube and the pivots that I made and import to another environment , the calculated metrics and dimension and also de pivot variable didn´t appear in the other environment. Because of this the pivot that use these metrics show error when you try to open.
I want to know that this behavior is normal or exist a way that you can export everything, independent if you build inside the cube or inside analyzer.
Thanks.
Jaqueline Krieger
That happened because calculated members and pivot variables are stored in globals. One way to export folder items together with related supporting items is to follow the procedure described here:
http://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls?KEY=D2IMP_ch_moving#D2IMP_folder_manager_export_container
Thanks Alessandro, now it works.
Hi, Jaqueline!
You also can consider using isc-dev import/export tool.
Install it in USER and map into %ALL (to make it runnable from any namespace), set up the tool like this:
Enter your project namespace and call:
And the tool will export (along with classes) all the DeepSee components you have in Namespace including pivots, dashboards, term lists, pivot variables and calculation members in folders like:
cls\package\class
dfi\folder\pivot
gbl\DeepSee\TermList.GBL.xml
gbl\deepsee\Variables.GBL.xml.
So you can use it with your CVS tool and see commit history, diffs, etc.
To import everything from the source folder into new namespace use:
or standard $SYSTEM.OBJ.ImportDir() method.
HTH