The Repackaging of Oracle Hyperion Applications.

Hi,
Windows 7 packaging team has brought up an issue with some of our desktop packages. They have mentioned the source that we used to build packages in XP uses a bundled version of JRE 1.6x and as it turns out, there are serious security issues with that version of JRE identified in the past couple of months that’s making Win7 take a position to not use any of 1.6x on the client machines going forward.
we need to see if Oracle has release updated versions of these packages that use 1.7x JRE.
Currently We are using  java version "1.6.0_29" for the below applications:
Oracle Hyperion EssbaseInSvcCon 11.1.2.2
Oracle Hyperion Interactive Rpt Studio 11.1.2.
Oracle OBIEE Admin Client 11.1.1.6
Oracle OBIEE Publisher Desktop 11.1.1.6
Oracle Hyperion Fin Rprt Studio 11.1.2.2
- Is there a revised version of these packages that use 1.7x?
- Is there an option we can use such that the installer won't install the JRE on its own and use the JRE that's already on the machine? If so, would it work with 1.7x
Thnx,
Charan

Hi Charan,
As per the support matrix  its not supported.
Please refer the support matrix link for more details :
Supported Platforms Matrices - Oracle Enterprise Performance Management System</title><meta name="Title&qu…
regards,
Harish.

Similar Messages

  • How to run the simple jsp on oracle 9ias application server?

    hi,
    how to run the simple jsp application jst disply the date on oracle 9ias application server?
    can any expline the steps how to do it?
    thanks
    pullareddy

    No, you need the Reports Server (as part of the Application Server or Weblogic, depending on your version).
    I try to save the report, it's saved as .jspThat depends. You can save it as a .rdf file too (so called Paper Layout). I think this option is used more often.

  • Oracle Hyperion Capital Asset Planning

    Please can anyone tell me the differences between oracle hyperion capital asset planning and oracle e-business suite Fixed Asset module.
    and also the utility of versions in oracle hyperion capital asset planning? is version related to workflow and approval process?
    please share your opinions...

    Hyperion Public Planning and Budgeting is a type of Planning application... you have to download total suite now....
    Have a look for the files for 11.1.2.3:
    More to life than this...: EPM 11.1.2.3 Installation and configuration changes
    You can use Rapid installation as well if you want:Rapid Deployment
    For 11.1.2.2:More to life than this...: EPM 11.1.2.2 Installation
    And for features , you can look below:
    http://www.oracle.com/us/solutions/business-analytics/performance-management/business-planning/hyperion-public-sector-planning-budgeting/overview/index.html
    Cheers!
    Sh!va

  • Configuring Multiple Schemas in Oracle ADF application

    Hi,
    Thanks all for the replies for my previous posts :-)
    We have a requirement in which we need to configure our application for multiple Database schema. At runtime based upon the logged in user we need to get data from the schema related to that user.
    These schema may be on same Database instance/server or may be on different DB servers.
    The requirement is like this
    Logged in User DB schema configured
    "A" ASchema @ 127.0.0.1
    "B" BSchema @ 127.0.0.2
    "C" ASchema @  127.0.0.1
    "D" Dschema @ 127.0.0.2
    based on the User login (which is happening through one OID system), I need to fetch data from different schema (configured for different application).
    These schema have different set of tables but set of table we require for our application are of same structure.
    Same structure means same Table names with same relations.
    Please let me know can we do the same in Oracle ADF application and How?_
    One more requirement is that if i add a user at runtime and configure the DB schema for this user, All data related to this users will be loaded from this Schema which is configured for this user.
    Thanks in Advance,
    Amit
    newbie to Oracle ADF
    Edited by: ur.amit on May 10, 2010 3:17 PM

    You can try the below example to change database at run time.
    in the filter change the connection and not the credentials
    http://www.oracle.com/technetwork/developer-tools/jdev/dynamicjdbchowto-101755.html#03.
    Most of the other part is done to handle state management tables, which you might also have to do unless you use a file passivation store or if its ok to passivate to a single database always.
    If its ok to passivate to a single db always. Hard code the jbo.server.internal_connection in the AM configurations to a DB jndi name.
    Adf allows you to activate and passivate to a different database other than what you are connected to get and put data.

  • How to hide custom actions from Oracle Worklist Application (Conceptual)

    Hi,
    I have a conceptual question in relation to Worklist Application and the Oracle Workflow. I will explain, now:
    This is the image that demonstrate the situation (worklist app console): http://i53.tinypic.com/34h9ilw.png
    As you can see, i have 4 custom actions (ENVIAR_ANALISE_FRAUDE, APROVAR, REPROVAR, ENVIAR_ANALISE_NIVEL2) and i have three main regions in the image
    (Action By Menu 1, Action By Menu 2 and Action By Button 3).
    I have to make same custom validations when the user to choose any action, then inside of the JSPX file (Human Task Page Generated), i made the following customizations to reach my objective:
    1) At the Region 2 (Action By Menu 2) - I delete these lines of code to hide the actions:
    <af:group id="g2">
    <af:forEach var="childNode1"
    items="#{actionAvailable.customActions}">
    <af:commandMenuItem textAndAccessKey="#{childNode1.displayName}"
    actionListener="#{invokeActionBean.setAction}"
    action="#{invokeActionBean.action}"
    partialSubmit="false" id="cmi2">
    <f:attribute name="ACTION_MENU_ITEM"
    value="#{childNode1.action}"/>
    </af:commandMenuItem>
    </af:forEach>
    </af:group>
    2) At the Region 3 (Action By Button 3), i change the default action button's to point to my managed bean action and make the required custom validations, in accordance to my requirements. After that i made my validations, i call some lines of code to make with the Oracle Workflow executes your default internal functions when an action is clicked.
    <af:commandToolbarButton actionListener="#{myManagedBean.setOperation}"
    text="Aprovar"
    disabled="#{myManagedBean.isErrorOccurred}"
    action="#{myManagedBean.invokeMyCustomizedOperation}"
    partialSubmit="false"
    visible="#{wf:isCustomActionAvailable('APROVAR', 'bindings.customActions')}"
    id="ctb2">
    <f:attribute name="DC_OPERATION_BINDING" value="bindings.APROVAR"/>
    </af:commandToolbarButton>
    public void setOperation(ActionEvent p1){
    this.acaoSelecionada = (String) p1.getComponent().getAttributes().get("DC_OPERATION_BINDING");
    this.operation = UtilWorkflow.getInstance().getOperationFromHumanTask(this.acaoSelecionada);
    this.operation.execute();
    InvokeActionBean ia = (InvokeActionBean)ADFContext.getCurrent().getRequestScope().get("invokeActionBean");
    ia.setFinalizerJavaScriptName("closeBrowser()");
    ia.invokeScript();
    3) The great problem for me now is the region 1 (Region By Menu 1), this the part of Oracle Worklist Application and i cannot hide this Menu or change anything inside it. If the user click at the 'APROVAR' action, my custom validations will be ignored and the Workflow will approve my task, without intervention of my validations.
    After explaining everything this, here are my questions:
    1) Is this the correct way to work with the Oracle Soa Suite ?
    2) How can i hide the Region 1 (Action By Menu 1) ? Is possible ?
    Thanks,
    Victor Jabur

    Hi,
    I am also in need of hiding or having custom validations for the actions in Region 1. Does anyone have any suggestions? Please help!
    Thanks,
    Farhana

  • Oracle Hyperion Query and Reporting Runtime Setup

    Experts,
    We are in the process to implementing Hyperion application (IR & FR), and we are looking for a way to
    setup some security governance on reports/queries that run for more than an hr. We were told that there
    is no “out of box” solution from Hyperion apps, and we want to know anybody have a chance to implement
    anything like this to manage run-off reports/queries in the past. We will be greatly appreciated if you can send
    us any documentation or information that can be helpful.
    Thanks in advance,

    Did you pick this forum at random or do you think your inquiry, in some way, relates to SQL and PL/SQL? <g>
    I think you will be far more likely to receive a response if you post to a group when your question is on-topic.

  • Oracle BAM Application Policies in EM missing

    Hello,
    I am trying to assign users and/or groups to the pre-seeded Oracle BAM application policies (section 26.3.2 and 26.3.3 of below support document). The way I get there is to navigate in the EM: BAM/OracleBamServer(right-click)/Security/ApplicationPolicies. When the page opens, I click on the blue arrow button to do a search. However, no security policies are found. When I do the same thing for ApplicationRoles, no roles are found. Is there something I need to do to get the pre-seeded application policies and roles for BAM? In other environments, I haven't had this problem - the roles and policies were populated already.
    http://download.oracle.com/docs/cd/E12839_01/integration.1111/e10226/bam_manage.htm
    Thanks
    Ben
    Edited by: 865170 on Oct 6, 2011 1:31 PM

    The solution provided to me by Oracle Support was to copy/paste a missing section into the admin server's system-jazn-data.xml file. The complete section is listed below. Oracle Support said that the file must have been overwritten at some point during the install or while restarting SOA managed servers.
    The location of the file: /opt/oracle/product/fmw/user_projects/domains/soa_domain/config/fmwconfig
    <application locale="en_US">
    <name>oracle-bam#11.1.1</name>
    <app-roles>
    <app-role>
    <name>Administrator</name>
    <display-name>Has access to all features.</display-name>
    <guid>E4BF6B9177CF11DFBFF6935F48C1392D</guid>
    <class>oracle.security.jps.service.policystore.ApplicationRole</class>
    <members>
    <member>
    <class>weblogic.security.principal.WLSGroupImpl</class>
    <name>Administrators</name>
    </member>
    <member>
    <class>weblogic.security.principal.WLSGroupImpl</class>
    <name>BamAdministrators</name>
    </member>
    <member>
    <class>weblogic.security.principal.WLSUserImpl</class>
    <name>OracleSystemUser</name>
    </member>
    </members>
    </app-role>
    <app-role>
    <name>Report Architect</name>
    <display-name>Has access to features for creating data objects and reports.</display-name>
    <guid>E4C0F23077CF11DFBFF6935F48C1392D</guid>
    <class>oracle.security.jps.service.policystore.ApplicationRole</class>
    <members>
    <member>
    <class>weblogic.security.principal.WLSGroupImpl</class>
    <name>BamReportArchitects</name>
    </member>
    </members>
    </app-role>
    <app-role>
    <name>Report Creator</name>
    <display-name>Has access to features for creating reports.</display-name>
    <guid>E4C0F23177CF11DFBFF6935F48C1392D</guid>
    <class>oracle.security.jps.service.policystore.ApplicationRole</class>
    <members>
    <member>
    <class>weblogic.security.principal.WLSGroupImpl</class>
    <name>BamReportCreators</name>
    </member>
    </members>
    </app-role>
    <app-role>
    <name>Report Viewer</name>
    <display-name>Has access to features for viewing reports.</display-name>
    <guid>E4C0F23277CF11DFBFF6935F48C1392D</guid>
    <class>oracle.security.jps.service.policystore.ApplicationRole</class>
    <members>
    <member>
    <class>weblogic.security.principal.WLSGroupImpl</class>
    <name>BamReportViewers</name>
    </member>
    </members>
    </app-role>
    </app-roles>
    <admin-policy>
    <jazn-policy>
    </jazn-policy>
    </admin-policy>
    <jazn-policy>
    <grant>
    <grantee>
    <principals>
    <principal>
    <class>oracle.security.jps.service.policystore.ApplicationRole</class>
    <name>Administrator</name>
    <guid>E4BF6B9177CF11DFBFF6935F48C1392D</guid>
    </principal>
    </principals>
    </grantee>
    <permissions>
    <permission>
    <class>oracle.bam.common.security.BAMPermission</class>
    <name>Administrator</name>
    </permission>
    <permission>
    <class>oracle.bam.common.security.BAMPermission</class>
    <name>CreateDataObject</name>
    </permission>
    <permission>
    <class>oracle.bam.common.security.BAMPermission</class>
    <name>ActiveViewer</name>
    </permission>
    <permission>
    <class>oracle.bam.common.security.BAMPermission</class>
    <name>ActiveStudio</name>
    </permission>
    <permission>
    <class>oracle.bam.common.security.BAMPermission</class>
    <name>Architect</name>
    </permission>
    <permission>
    <class>oracle.bam.common.security.BAMPermission</class>
    <name>CreateReport</name>
    </permission>
    <permission>
    <class>oracle.bam.common.security.BAMPermission</class>
    <name>CreateAlertRule</name>
    </permission>
    <permission>
    <class>oracle.bam.common.security.BAMPermission</class>
    <name>EmailRenderedReport</name>
    </permission>
    </permissions>
    </grant>
    <grant>
    <grantee>
    <principals>
    <principal>
    <class>oracle.security.jps.service.policystore.ApplicationRole</class>
    <name>Report Architect</name>
    <guid>E4C0F23077CF11DFBFF6935F48C1392D</guid>
    </principal>
    </principals>
    </grantee>
    <permissions>
    <permission>
    <class>oracle.bam.common.security.BAMPermission</class>
    <name>CreateDataObject</name>
    </permission>
    <permission>
    <class>oracle.bam.common.security.BAMPermission</class>
    <name>ActiveViewer</name>
    </permission>
    <permission>
    <class>oracle.bam.common.security.BAMPermission</class>
    <name>ActiveStudio</name>
    </permission>
    <permission>
    <class>oracle.bam.common.security.BAMPermission</class>
    <name>Architect</name>
    </permission>
    <permission>
    <class>oracle.bam.common.security.BAMPermission</class>
    <name>CreateReport</name>
    </permission>
    <permission>
    <class>oracle.bam.common.security.BAMPermission</class>
    <name>CreateAlertRule</name>
    </permission>
    <permission>
    <class>oracle.bam.common.security.BAMPermission</class>
    <name>EmailRenderedReport</name>
    </permission>
    </permissions>
    </grant>
    <grant>
    <grantee>
    <principals>
    <principal>
    <class>oracle.security.jps.service.policystore.ApplicationRole</class>
    <name>Report Creator</name>
    <guid>E4C0F23177CF11DFBFF6935F48C1392D</guid>
    </principal>
    </principals>
    </grantee>
    <permissions>
    <permission>
    <class>oracle.bam.common.security.BAMPermission</class>
    <name>ActiveViewer</name>
    </permission>
    <permission>
    <class>oracle.bam.common.security.BAMPermission</class>
    <name>ActiveStudio</name>
    </permission>
    <permission>
    <class>oracle.bam.common.security.BAMPermission</class>
    <name>CreateReport</name>
    </permission>
    <permission>
    <class>oracle.bam.common.security.BAMPermission</class>
    <name>CreateAlertRule</name>
    </permission>
    <permission>
    <class>oracle.bam.common.security.BAMPermission</class>
    <name>EmailRenderedReport</name>
    </permission>
    </permissions>
    </grant>
    <grant>
    <grantee>
    <principals>
    <principal>
    <class>oracle.security.jps.service.policystore.ApplicationRole</class>
    <name>Report Viewer</name>
    <guid>E4C0F23277CF11DFBFF6935F48C1392D</guid>
    </principal>
    </principals>
    </grantee>
    <permissions>
    <permission>
    <class>oracle.bam.common.security.BAMPermission</class>
    <name>ActiveViewer</name>
    </permission>
    </permissions>
    </grant>
    </jazn-policy>
    </application>

  • Inquiry about oracle Fusion Application(New Oracle ERP product) and ADF

    Please i want to know what the java technology oracle fusion application is developed by,java ADF or another?!
    and about ADF ?how i can build my approval process for specific transaction ?!is it any tools for that integrated with ADF ?!
    Thanks in advance
    o.t.a

    For human approval process you might want to look into Oracle BPM and the Human workflow engine that it offers - it is well integrated with Oracle ADF as the UI layer for the managers.
    Watch Video                        

  • Regarding Oracle BI Applications Installation

    Hi all,
    I was going through the documentation of Oracle BI Applications, probably the old version.
    I. Was DAC previously installed as one of the component along with Oracle BI Applications installation?
    Now i have installed Oracle BI Applications version 7.9.6.1. and DAC is not installed with it. It is available as seperate package from OTN website.
    Old Documentation says: "Installing DAC is part of the *Oracle BI Analytics installation*", refering to what is said: what i learnt is there are:
    1. "Oracle Infrastructure Installation"
    2. "Oracle BI Applications Installation"
    3. "Informatica Powercenter Installation"
    4. "DAC Installation" as seperate package.
    II. what does he mean by *"Oracle BI Analytics installation"*? is it part of any one installation mentioned above or is a seperate installation.
    Regards,
    Sreekanth.

    I. Was DAC previously installed as one of the component along with Oracle BI Applications installation?It's a separate installation
    Now i have installed Oracle BI Applications version 7.9.6.1. and DAC is not installed with it. It is available as seperate package from OTN website.Correct, you have to install it separately
    II. what does he mean by *"Oracle BI Analytics installation"*? is it part of any one installation mentioned above or is a seperate installation.The OBIA documentation is not very good, it has lots of ambiguities like the one you quote.
    http://rnm1978.wordpress.com/2009/07/30/what-is-obia/
    You basically need to install:
    Informatica Server & Client
    DAC Server & Client
    OBIEE
    Informatica metadata (repository)
    DAC metadata (repository)
    OBIEE metadata (repository RPD and WebCat)
    Datawarehouse schema

  • Unifiers for drag & relate with oracle forms application

    Hi All,
      Is it possible to do drag & relate functionality in the portal with oracle forms application?? Is there any unifiers already available for drag & relate functionality with oracle forms application ?? If yes, then can anyone share the information.
    Regards
    Moses

    Hi Moses, you can use D&R with querys in Oracle using query iviews.
    You can find a lot of information in:https://www.sdn.sap.com/sdn/ep.sdn?page=unification_welcome.htm
    Regards.

  • SAP ERP with Oracle Planning Applications

    Based on the customers with Oracle VCP applications on top of SAP ERP, I am interested mainly in the Data mapping between Oracle ODS/VCP and SAP ERP. Any input/document will be helpful to start the mapping process. Thanks.

    Yes, XI has build in JDBC adapter used to connect to database applications. In your case, if your oracle system is sender, then you can choose JDBC sender, if it is receiver, then you can use JDBC receiver.
    By default, XI does not have JDBC driver installed, you must deploy the driver first, there is How -To document  from SAP, you can easily search on the forum to get it.
    Regards.
    Liang

  • Performance of Oracle forms application

    Hi,
    I would like to know about the performance of Oracle forms application over HTTP protocol. We may have citrix server and diskless nodes. Can you please let me know about the performance of the oracle forms application compared with html codes? Can you please send me some info about the performnance of the application? Do we need to have any software on the client side for this?
    Thanks
    regards,
    Vaidyanathan G

    Bruno, did you solve the performance problem? I'm experiencing the same lack of speed.

  • How does the Approvals process work in Oracle Hyperion Planning v 11.1.2

    Hi,
    I have recently upgraded to Oracle Hyperion Planning v 11.1.2 and the way that the application handles budget / Forecast approvals appears to have changed.
    Is anyone able to direct me to a user manual or provide me with some guidance on how to set up the approvals process in the upgrade Oracle Hyperion Planning v 11.1.2.
    Currently I have the approvals hierarchy set to allow all approvals and have the approvals template set to bottom up, I have not put any values on the hierarchy and sub hierarchy tab as I want to drive approvals by entity only. I have set the correct Scenario and assigned the owners/approvers however when I start the approvals process the current owner is let sitting at no owner? Should this not pull though the owner set up under assign owners.
    When I log in as the owner of the planning unit I do get the option to promote the unit as set out in the assign owner hierarchy however when I attempt to do this I get the following error:
    Failed: Unauthorized New Owner
    I am relatively new to planning so any help you can provide me with would be much appreciated.
    Edited by: Bestie 279 on Aug 9, 2011 4:16 PM

    You might want to have a look at "Hyperion Planning Process Management Features explained By Example [Document 1226783.1]" in MOS.
    HTH-
    Jasmine.

  • Few questions .. Oracle BI, Oracle BI Application,Hyperion,Hyperion-Essbase

    My company has installed the “Oracle Financial”, “Procure to Pay”, “Order to Cash” and “Human Resource”, now for executives he wants to choose products, so my task is to prepare a document to highlight the features versus cost, that which product may enhance our productivity, please note that “Dashboard capabilities like Oracle BI” is necessary part of this implementation.
    You are requested that help me regarding this task and provide me the detailed answer for my questions, you help is highly appreciated
    (I am posting these questions in all three categories of this forum “Business Intelligence Foundation”, “Performance Management Applications”, “Business Intelligence Applications”)
    Thanks
    Q1) what is the basic difference between
    “Performance Management “software like “Hyperion System-9” and
    “Business Intelligence” software like “Oracle BI Applications”
    Q2) what is “Hyperion – Essbase”, is this a standalone product or it installed over “Hyperion System-9”
    Q3) what is the difference between “Hyperion System-9” and “Hyperion Enterprize”
    Q4) when I was reading the documentation of “oracle business intelligence application (installation and configuration guide)”, there is at page # 2-1
    “Before you can install “Oracle Business Intelligence Application”, you must install an “Oracle Business Intelligence Infrastructure”.
         What is meant by this, what is “Oracle BI Infrastructure”?
              Does it mean that we have to install “Oracle Business Intelligence” product, before “Oracle BI Application”
              If yes,
                   Which Version of BI we have to install
                        Oracle BI Enterprise Edition
                        Oracle BI Standard Edition One
                        Oracle BI Standard Edition
                   Or we are free to choose any of above three (3) products
    Q5) Is “hyperion System-9” has itself a “Dashbaord” (like Oracle BI) capabilities or we have to install “Oracle BI” software for that purpose?
    Q6) if we choose “Hyperion System-9” then what components of “Hyperion System-9” are helpful for us,
    Our installed products are “Oracle Financial”, “Procure to Pay”, “Order to Cash” and “Human Resource”

    Hi ,
    If you can provide your email , I will compose an email with all the answers, please email me at [email protected],
    I will explain what you really have and please do include what you are trying to establish with the current set of tools.
    Thank you,
    Mohammad Farhan Alam

  • How to call a package from the Report in Oracle Application Express

    How to call a package from the Report in Oracle Application Express

    Hello,
    What do you mean? Something like SELECT mypackage.function( par1, par2) from dual?
    Or do you want to execute a procedure when something happens on the page, like clicking a button?
    Greetings,
    Roel
    http://roelhartman.blogspot.com/
    You can reward this reply by marking it as either Helpful or Correct ;-)

Maybe you are looking for

  • Can we display ICONS in ALV list?

    Hi,    Is it possible to display icons (ICON_GREEN_LIGHT) in the ALV list using the function module REUSE_ALV_LIST_DISPLAY.    Is there any possibility of displaying a list using object oriented ALV? Thanks and Regards, Lakshmi.

  • Process Integrator Installation Problem

    Hello all, I just download the process integrator product, when I try to install, it just does not work. Nothing happens after installAnywhere dialog's legend goes to 100%. Thanks, hm

  • Purchased Elements 10 / Premier 10 but it won't install

    I have a Mac and OS is up to date but keep getting eror that says "your installation encountered errors".  It then tell me to try restarting, which I have done multiple times but installation keeps stalling and giving me the same error.  Then it has

  • Delete of 20k photos crashes iPad mini on ios8

    Through some sort of iCloud issue 19,207 blank photos were generated and basically filled my ios devices.  I was finally able to get them out of the photostream, but they're now taking up ~20GB of space on my iPad mini retina in the recently deleted

  • IPod touch failed set-up via USB - please help?

    NB - this is not related to my Mac computer. I am connecting an iPod touch 4th generation to a Windows machine running XP (SP3). The iPod is new and I can't get it to set up via USB connection to computer running iTunes (I have mobile broadband, and