Saturday, August 22, 2020

Hyperion Financial Reporting 11.2.x LCM Issue

I don't have a solution for this yet, but the problem I noticed in Oracle EPM / Hyperion Financial Reporting 11.2.0.0 carries forward into 11.2.1.0 and 11.2.2.0.

The Hyperion LCM command-line utility works OK for Financial Reporting (now "Document Repository"), but the user interface in the Shared Services Console does not.  This issue is specific to "Document Repository" only.

The observed symptom happens when trying to import or export Document Repository within the Shared Services Console.  When attempting an export, you'll see the infamous EPMLCM-13000 error, which could mean just about anything (usually it means the module is non-functional, offline, or you lack permission to the module in question).  When attempting an import, it says you don't have permission to Document Repository.

The culprit, however, is the EPM System Configurator tool.

Here are "before" and "after" screenshots of the legacy FRConfig tool (\Oracle\Middleware\EPMSystem11R1\products\financialreporting\bin\frconfig.bat|sh).

Before.  Here is after we only deployed EPM Foundation, Financial Reporting, and nothing else:











 

The correct dbName is shown above.  This is the dbName I use for EPM Foundation.  In EPM 11.2.x, the Reporting Analysis Framework repository is no more, and instead Financial Reporting's tables ought to (in my opinion) co-located with EPM Foundation.  Look at the table names and you'll see why.

And here is after we deployed a few more modules.



Here you can see the configuration was switched to use FDMEE's database.

Note that I did NOT touch Financial Reporting when deploying FDMEE.

It is blind luck whether Financial Reporting's configuration stays as-is, or is switched behind the scenes to use Planning, FDMEE, or some other product that has its own database.


The dbName and DbURL properties are read-only, despite the very old Oracle Knowledge Base articles concerning the FRConfig tool.

Your workarounds until Oracle issues a patch are:

  1. Perform Exports and Imports through Workspace Explore ("the old way"), or
  2. Use the LCM command-line utility.  Here pasted below is an LCM XML file for Document Repository that works for me in 11.2.x:

<?xml version="1.0" encoding="UTF-8"?>
<Package>
    <LOCALE>en_US</LOCALE>
    <User name="admin" password="admin's password here"/>
    <Task>
        <Source type="Application" product="DOCREP" project="Default Application Group" application="Document Repository"/>
        <Target type="FileSystem" filePath="/DOCREP-Document Repository"/>
        <Artifact recursive="true" parentPath="/Repository Objects" pattern="*"/>
    </Task>
</Package>

Syntax I use to invoke the utility is:

CD F:\Oracle\Middleware\user_projects\epmsystem1\bin
SET XMLDIR=folder where you've saved ExportReports.xml as pasted above
SET LCMDIR=folder where you want the exports to be saved
start "ExportReports" /wait /i cmd /c Utility.bat %XMLDIR%\ExportReports.xml -b %LCMDIR%\Reports ^> %LCMDIR%\ExportReports.log 2^> %LCMDIR%\ExportReports.err

Oracle's "utility.bat" only works on the EPM Foundation server, and only when you're sitting in your Instance /bin folder.  A workaround is available to run it on other machines, and Oracle has a Knowledge Base article about this.

The start /wait /i cmd /c utility.bat syntax is helpful if your script is going to do other operations after this one.  Oracle's utility.bat invokes a Java program that will cause your script to immediately bomb and exit without warning should the Java program abnormally exits for any reason.

Utility.bat|sh works both ways (it can import as well as export) and the LifeCycle Management User's Guide contains the syntax for this.

Check back with support.oracle.com from time to time to see if a patch has come addressing this.  In addition to checking for Financial Reporting, also check "Hyperion Infrastructure" as fixes to configtool may appear within this section.


1 comment:

  1. Dave,
    I had done this fix to get reports working with LCM. Not sure if it directly relates to your issue, but sounds the same. See the steps below and let me know if that fixes it also.

    In the windows machine where you have FR installed, navigate to this windows registry using regedit:

    1)HKEY_LOCAL_MACHINE\SOFTWARE\Hyperion Solutions\FinancialReporting0\HyS9FRReports_epmsystem1

    2)Check value of JVMOptionCount, let's say it's 45. Then add a new String value with named JVMOption46, and value as -Dweblogic.oif.serialFilterMode=disable,

    3)Then add one to JVMOptionCount value, in this example, 46.

    4)Repeat the same for the Foundation Services0 registry entry also.

    5)Restart both the Foundation and FR services.

    Let me know how it goes.

    ReplyDelete

Thank you very much for your interest in this blog! I hope you're finding it helpful.

Please keep comments relevant to the topic in the post, as this blog is not a free-for-all substitute for Oracle Support or traditional consulting. If you have many questions unrelated to the specific topic at hand, consider contacting me on LinkedIn (https://www.linkedin.com/in/daveshay) so we may discuss the possibility of consulting.

Commenting on posts older than 90 days unfortunately goes into moderation, thanks to spammers who've been hitting this blog. Please have patience, and thanks for your understanding!

Comments including URLs linking back to gambling or other things unrelated to Oracle EPM will be deleted on sight. If you're an EPM consultant and are offering me constructive criticism or a tip, go ahead and DO link back to your blog or firm's website if you so desire.

Thanks again for reading!