The product code used in the migration definition files for Financial Close Management is FCC. All sample migration definition files are provided in EPM_ORACLE_HOME/common/utilities/LCM/11.1.2.1/Sample.
Exporting to the File System
<?xml version="1.0" encoding="UTF-8"?> <Package name="web-migration" description="Migrating Product to File System"> <LOCALE>en_US</LOCALE> <Connections> <ConnectionInfo name="MyHSS-Connection1" type="HSS" description="Hyperion Shared Service connection" user="" password=""/> <ConnectionInfo name="FileSystem-Connection1" type="FileSystem" description="File system connection" HSSConnection="MyHSS-Connection1" filePath="/FCM Artifacts"/> <ConnectionInfo name="AppConnection2" type="Application" product="FCC" project="Financial Close" application="Financial Close Manager" HSSConnection="MyHSS-Connection1" description="Source Application"/> </Connections> <Tasks> <Task seqID="-1"> <Source connection="AppConnection2"> <Options/> <Artifact recursive="true" parentPath="/Templates" pattern="*"/> <Artifact recursive="true" parentPath="/Periods" pattern="*"/> <Artifact recursive="true" parentPath="/Years" pattern="*"/> <Artifact recursive="true" parentPath="/Custom Attributes" pattern="*"/> <Artifact recursive="true" parentPath="/Integration Applications" pattern="*"/> <Artifact recursive="true" parentPath="/Task Types" pattern="*"/> <Artifact recursive="true" parentPath="/Alert Types" pattern="*"/> <Artifact recursive="true" parentPath="/Integration Types" pattern="*"/> </Source> <Target connection="FileSystem-Connection1"> <Options/> </Target> </Task> </Tasks> </Package>
Importing from the File System
<?xml version="1.0" encoding="UTF-8"?> <Package name="web-migration" description="Migrating File System to Product"> <LOCALE>en_US</LOCALE> <Connections> <ConnectionInfo name="MyHSS-Connection1" type="HSS" description="Hyperion Shared Service connection" user="" password=""/> <ConnectionInfo name="AppConnection1" type="Application" product="FCC" description="Destination Application" HSSConnection="MyHSS-Connection1" project="Financial Close" application="Financial Close Manager"/> <ConnectionInfo name="FileSystem-Connection2" type="FileSystem" HSSConnection="MyHSS-Connection1" filePath="/FCM Artifacts" description="Source Application"/> </Connections> <Tasks> <Task seqID="-1"> <Source connection="FileSystem-Connection2"> <Options/> <Artifact recursive="true" parentPath="/Templates" pattern="*"/> <Artifact recursive="true" parentPath="/Periods" pattern="*"/> <Artifact recursive="true" parentPath="/Years" pattern="*"/> <Artifact recursive="true" parentPath="/Custom Attributes" pattern="*"/> <Artifact recursive="true" parentPath="/Integration Applications" pattern="*"/> <Artifact recursive="true" parentPath="/Task Types" pattern="*"/> <Artifact recursive="true" parentPath="/Alert Types" pattern="*"/> <Artifact recursive="true" parentPath="/Integration Types" pattern="*"/> </Source> <Target connection="AppConnection1"> <Options> <optionInfo name="replaceOption" value="Replace"/> </Options> </Target> </Task> </Tasks> </Package>