Skip to Main Content

Analytics Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Hyperion 11.1.2.4 compatibility with windows 10

1572555Feb 10 2017 — edited Feb 14 2017

Hello,

To the best of my knowledge,

1) IE11 on Windows 10 completely supports Hyperion 11.1.2.4 (including Planning/HFM/DRM/HPCM).

2) Smart View installed on IE11 also supports Hyperion 11.1.2.4

3) And latest Microsoft Edge doesn't support the same.

Hope that's correct? Thank you so much!

Comments

Drako13
I fixed this by going into the ant-sca-compile.xml and changing the <jvmarg value="-Xmx512m"/>below.

Before
<target name="scac" description="Compile and validate a composite">
<scac input="${scac.input}" outXml="${scac.output}" error="${scac.error}" appHome="${scac.application.home}" failonerror="true" displayLevel="${scac.displayLevel}">
<jvmarg value="-Xms128m"/>
<jvmarg value="-Xmx1024m"/>
<jvmarg value="-XX:PermSize=32m"/>
<jvmarg value="-XX:MaxPermSize=512m"/>
<!-- jvmarg value="-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005"/ -->
</scac>

After

<target name="scac" description="Compile and validate a composite">
<scac input="${scac.input}" outXml="${scac.output}" error="${scac.error}" appHome="${scac.application.home}" failonerror="true" displayLevel="${scac.displayLevel}">
<jvmarg value="-Xms128m"/>
<jvmarg value="-Xmx512m"/>
<jvmarg value="-XX:PermSize=32m"/>
<jvmarg value="-XX:MaxPermSize=512m"/>
<!-- jvmarg value="-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005"/ -->
</scac>
User_TQR7L

THANKS ALOT!!!!!!!

It worked for me.

user13145115

THANKS A TON !!!! You saved me lot of time thanks again.

1 - 3
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Mar 14 2017
Added on Feb 10 2017
3 comments
2,058 views