how to Creat Xml files in LCM for Hyperion 9.3.X
hi,
I am using hyperion 9.3.3 and i want to use LCM to migrate a planning Application from one server to another,
i have read the process in the LCM pdf but its very confusing and difficult to create the XML files that have asked for.
I am trying to export the artifacts from a planning application but its not working its showing an error in the command line screen when i am running the utility
E:\Hyperion\BIPlus\bin>LCMUtility.bat C:\ExportPackage_NEW.xml
The filename, directory name, or volume label syntax is incorrect.
Attempting to load Log Config File:../conf/log.xml
main 2011-07-12 16:36:03,296 INFO - ----------- Package file info -------
main 2011-07-12 16:36:03,296 INFO - Package File Path = C:\ExportPackage_NEW.xm
l
main 2011-07-12 16:36:05,265 ERROR - Specified product code Planning does not ex
ist in list of products registered with Hyperion Shared Services
my export .xml file is
<?xml version="1.0" encoding="UTF-8"?>
<!-- edited with XMLSPY v5 rel. 4 U (http://www.xmlspy.com) by Dongling Ding (Hyperion) --><Package name="" description="" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<!-- need more information to interface with logging handler -->
<Credentials user="admin" password="password"/>
<Connections>
<ConnectionInfo name="MyHSS-Connection" type="HSS" description="Hyperion Shared Service connection" url="http://localhost:58080/interop"/>
<ConnectionInfo name="FileSystem-Connection" type="FileSystem" description="File System Location" filePath="file:/c:/LCM/ExportedOutput"/>
<!-- for Unix based machine filePath attribute could look like filePath="file:/nfshome/hyperionstorage/lcmStorage" -->
<ConnectionInfo name="DvAOPMIS" type="Application" product="Planning" description="" HSSConnection="MyHSS-Connection" project="Planning" application="DvAOPMIS"/>
</Connections>
<Tasks>
<Task seqID="1">
<Source connection="AppConnection1">
<!-- the options listed would match some option specified in product registration -->
<Options>
<!-- Set to "true" if Job Outputs should be exported alone with the job -->
<optionInfo name="exportJobOutput" value="true"/>
</Options>
<!-- Retrieves whole content of 'Production Reporting Documents' -->
<Artifact parentPath="/Repository Objects/Sample Content/Production Reporting Documents" recursive="true" pattern="*"/>
<!-- Following demonstrates not recursive retrieving of objects -->
<Artifact parentPath="/Repository Objects/Sample Content/Interactive Reporting Documents" recursive="false" pattern="*"/>
<!-- Retrieves all the objects with the name starting with WeeklyReport -->
<Artifact parentPath="/Repository Objects" recursive="true" pattern="WeeklyReport*"/>
<!-- Following demonstrates retrieving the objects using the filtering by type -->
<Artifact parentPath="/Repository Objects" type="folder" recursive="true" pattern="*"/>
<Artifact parentPath="/Repository Objects" type="application/x-brioquery" recursive="true" pattern="*"/>
<Artifact parentPath="/Repository Objects" type="application/x-SQR" recursive="true" pattern="*"/>
<Artifact parentPath="/Repository Objects" type="application/hyperion-analyzer-report" recursive="true" pattern="*"/>
<Artifact parentPath="/Repository Objects" type="application/hyperion-reports-report" recursive="true" pattern="*"/>
<!-- Non-repository objects -->
<Artifact parentPath="/Product Preferences" recursive="true" pattern="*"/>
<Artifact parentPath="/Schedule Objects" recursive="true" pattern="*"/>
<Artifact parentPath="/Physical Resources" recursive="true" pattern="*"/>
<Artifact parentPath="/Security" recursive="true" pattern="*"/>
</Source>
<Target connection="FileSystem-Connection">
<Options>
</Options>
<Transforms>
</Transforms>
</Target>
</Task>
</Tasks>
</Package>
out here , the name of the planning application is DvAOPMIS .
Please help