The product code used in the migration definition files for Performance Scorecard is HPS. 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 product">
<Logging option="IgnoreError" logfile=""/>
<Connections>
<ConnectionInfo name="MyHSS-Connection1" type="HSS" description="Hyperion Shared Service connection" user="" password=""/>
<ConnectionInfo name="AppConnection1" type="Application" product="HPS" project="Scorecard" application="Hyperion Performance Scorecard" HSSConnection="MyHSS-Connection1" description="Source Application"/>
<ConnectionInfo name="FileSystem-Connection2" type="FileSystem" filePath="/HPS_Export"/>
</Connections>
<Tasks>
<Task seqID="1">
<Source connection="AppConnection1">
<Options>
<optionInfo name="incremental" value="false"/>
</Options>
<Artifact recursive="true" parentPath="/Administrative Options" pattern="*"/>
<Artifact recursive="true" parentPath="/Objects" pattern="*"/>
</Source>
<Target connection="FileSystem-Connection2">
<Options/>
</Target>
</Task>
</Tasks>
</Package>
Importing from the File System
<?xml version="1.0" encoding="UTF-8"?>
<Package name="web-migration" description="migrating product to product">
<Logging option="IgnoreError" logfile=""/>
<Connections>
<ConnectionInfo name="MyHSS-Connection1" type="HSS" description="Hyperion Shared Service connection" user="" password=""/>
<ConnectionInfo name="AppConnection1" type="Application" product="HPS" project="Scorecard" application="Hyperion Performance Scorecard" HSSConnection="MyHSS-Connection1" description="Source Application"/>
<ConnectionInfo name="FileSystem-Connection2" type="FileSystem" filePath="/HPS_Export"/>
</Connections>
<Tasks>
<Task seqID="1">
<Source connection="FileSystem-Connection2">
<Options>
<optionInfo name="incremental" value="false"/>
</Options>
<Artifact recursive="true" parentPath="/Administrative Options" pattern="*"/>
<Artifact recursive="true" parentPath="/Objects" pattern="*"/>
</Source>
<Target connection="AppConnection1">
<Options/>
</Target>
</Task>
</Tasks>
</Package>