How to find the versions supported for Internet Explorer

Can someone tell me please how to find which versions of Internet Explorer are supported by versions of interactive reporting. I've been hitting my head against the wall, trying to find documentation that will give me this information. I'm not so interested in someone tell me the answer that I'm finding a way to get the answer.

Any help much appreciated.

Dave

This depends on the version of IR

You can see the http://www.oracle.com/technetwork/middleware/epm/documentation/index.html support matrix

in the above url, select the EMP and find same support matrix.

Tags: Business Intelligence

Similar Questions

  • How to find the child level for each table in a relational model?

    Earthlings,

    I need your help, and I know that, "Yes, we can change." Change this thread to a question answered.

    So: How to find the child level for each table in a relational model?

    I have a database of relacional (9.2), all right?
    .
         O /* This is a child who makes N references to each of the follow N parent tables (here: three), and so on. */
        /↑\ Fks
       O"O O" <-- level 2 for first table (circle)
      /↑\ Fks
    "o"o"o" <-- level 1 for middle table (circle)
       ↑ Fk
      "º"
    Tips:
    -Each circle represents a table;
    -Red no tables have foreign key
    -the picture on the front line of tree, for example, a level 3, but when 3 becomes N? How is N? That is the question.

    I started to think about the following:

    First of all, I need to know how to take the kids:
    select distinct child.table_name child
      from all_cons_columns father
      join all_cons_columns child
     using (owner, position)
      join (select child.owner,
                   child.constraint_name fk,
                   child.table_name child,
                   child.r_constraint_name pk,
                   father.table_name father
              from all_constraints father, all_constraints child
             where child.r_owner = father.owner
               and child.r_constraint_name = father.constraint_name
               and father.constraint_type in ('P', 'U')
               and child.constraint_type = 'R'
               and child.owner = 'OWNER') aux
     using (owner)
     where child.constraint_name = aux.fk
       and child.table_name = aux.child
       and father.constraint_name = aux.pk
       and father.table_name = aux.father;
    Thought...
    We will share!

    Thanks in advance,
    Philips

    Published by: BluShadow on April 1st, 2011 15:08
    formatting of code and hierarchy for readbility

    Have you looked to see if there is a cycle in the graph of dependence? Is there a table that has a foreign key to B and B has a back of A foreign key?

    SQL> create table my_emp (
      2    emp_id number primary key,
      3    emp_name varchar2(10),
      4    manager_id number
      5  );
    
    Table created.
    
    SQL> ed
    Wrote file afiedt.buf
    
      1  create table my_mgr (
      2    manager_id number primary key,
      3    employee_id number references my_emp( emp_id ),
      4    purchasing_authority number
      5* )
    SQL> /
    
    Table created.
    
    SQL> alter table my_emp
      2    add constraint fk_emp_mgr foreign key( manager_id )
      3         references my_mgr( manager_id );
    
    Table altered.
    
    SQL> ed
    Wrote file afiedt.buf
    
      1   select level lvl,
      2          child_table_name,
      3          sys_connect_by_path( child_table_name, '/' ) path
      4     from (select parent.table_name      parent_table_name,
      5                  parent.constraint_name parent_constraint_name,
      6                  child.table_name        child_table_name,
      7                  child.constraint_name   child_constraint_name
      8             from user_constraints parent,
      9                  user_constraints child
     10            where child.constraint_type = 'R'
     11              and parent.constraint_type = 'P'
     12              and child.r_constraint_name = parent.constraint_name
     13           union all
     14           select null,
     15                  null,
     16                  table_name,
     17                  constraint_name
     18             from user_constraints
     19            where constraint_type = 'P')
     20    start with child_table_name = 'MY_EMP'
     21*  connect by prior child_table_name = parent_table_name
    SQL> /
    ERROR:
    ORA-01436: CONNECT BY loop in user data
    

    If you have a cycle, you have some problems.

    (1) it is a NOCYCLE keyword does not cause the error, but that probably requires an Oracle version which is not so far off support. I don't think it was available at the time 9.2 but I don't have anything old enough to test on

    SQL> ed
    Wrote file afiedt.buf
    
      1   select level lvl,
      2          child_table_name,
      3          sys_connect_by_path( child_table_name, '/' ) path
      4     from (select parent.table_name      parent_table_name,
      5                  parent.constraint_name parent_constraint_name,
      6                  child.table_name        child_table_name,
      7                  child.constraint_name   child_constraint_name
      8             from user_constraints parent,
      9                  user_constraints child
     10            where child.constraint_type = 'R'
     11              and parent.constraint_type = 'P'
     12              and child.r_constraint_name = parent.constraint_name
     13           union all
     14           select null,
     15                  null,
     16                  table_name,
     17                  constraint_name
     18             from user_constraints
     19            where constraint_type = 'P')
     20    start with child_table_name = 'MY_EMP'
     21*  connect by nocycle prior child_table_name = parent_table_name
    SQL> /
    
           LVL CHILD_TABLE_NAME               PATH
    ---------- ------------------------------ --------------------
             1 MY_EMP                         /MY_EMP
             2 MY_MGR                         /MY_EMP/MY_MGR
             1 MY_EMP                         /MY_EMP
             2 MY_MGR                         /MY_EMP/MY_MGR
    

    (2) If you try to write on a table and all of its constraints in a file and do it in a valid order, the entire solution is probably wrong. It is impossible, for example, to generate the DDL for MY_EMP and MY_DEPT such as all instructions for a table come first, and all the instructions for the other are generated second. So even if NOCYCLE to avoid the error, you would end up with an invalid DDL script. If that's the problem, I would rethink the approach.

    -Generate the DDL for all tables without constraint
    -Can generate the DDL for all primary key constraints
    -Can generate the DDL for all unique key constraints
    -Can generate the DDL for all foreign key constraints

    This is not solidarity all the DOF for a given in the file object. But the SQL will be radically simpler writing - there will be no need to even look at the dependency graph.

    Justin

  • How to find the version of the application deployed on wls9 using wlst

    Hello

    How to find the version of the application deployed on wls 9.2 wlst wsing. I know that we can use the Mbean version but I did not give any version while deploying.

    Say I have an application with name test and the path is c:/temp/test1.ear.

    (WHN deploy the app name (test) remains the same, but I could be deployed test1.ear(c:/temp/test1.ear) or test2.ear(c:/temp/test1.ear).

    Is there a way to wlst to know what test1.ear or test2.ear is deployed.

    Thanks in advance
    Neeraj

    Hi Neeraj,

    Here is the code that you had asked for.

    # START OF SCRIPT

    Connect('vasadmin','vaspassword','t3://localhost:7001')
    domainConfig()
    vasApps = cmo.getAppDeployments)

    for app in vasApps:
    vasAppPath = ' / AppDeployments / ' + app.getName)
    CD (vasAppPath)
    print app.getName () + ': the source path is: "+ cmo.getAbsoluteSourcePath)

    # END SCRIPT

    Thank you.

    Naour Vijay.

  • How to find the audio driver for HP sleekbook

    Can not find the audio driver for my HP laptop...

    I bought the new elegant book, model no HP. Elegant Pavilion book 15th-b001

    After 2-3 months, I found my laptop speakers weren't working and its got very slow. I couldn't do so I kept using headphones.
    recently, I've run the driverpack and accidentally a few update audio driver and voice my laptop has increased incredibly, I was surprised, it was very good,

    but now, I've updated my windows 8 to 10 and all the previous driver deleted and voice became too slow as it used to be.,.
    now I run the driverpack 15 which is a more up-to-date version, but they did not update this driver, and always the voice of my laptop is too slow.
    I don't know the exact name of that drivers, how do I know the name of that drivers?
    on the internet, I tried too many drivers audio, high definition, etc., but the result is zero,
    con someone help me about this?

    http://ftp.HP.com/pub/SoftPaq/sp59501-60000/sp59802.exe

  • How to find the latest diagnostics for 11i patches

    How to find the latest patches of diagnostics for 11i, all documents.

    You can find the latest patch in (Note: 167000.1 - Guide of Installation of E-Business Suite Diagnostics).

    You can also check (Note: 235307.1 - E-Business Suite Diagnostics Tools FAQ and Troubleshooting Guide for version 11i and R12).

    Thank you
    Hussein

  • How to find the version of database

    Hi all

    My tns.ora file contains a lot of list of database and information

    How to find the data base belongs to which version?

    Means that 11g or 10g like this...?

    Thank you
    Praveen

    If you can connect to the DB, you can query

    select * from v$version
    
  • NB200 - how to find the 3G module for it?

    Hello

    Pls how I find the 3G module in my NB200 - PLL20E?

    Thank you

    Hello

    What do you mean exactly?
    You want to upgrade your NB200 with a card 3G?

    If yes then you must make sure that your NB200 could be improved using this card.
    I'm not sure if this is possible.

    But don t give up boyfriend Toshiba authorized service partner in your country could provide details.
    Guys might be able to tell if this is possible and could provide a good 3G module

    If you get more details please share with us!

    See you soon

  • How to find the version of the AIA and PIP

    Is it possible, where we can find the version of the AIA and PIP installed on a server?

    Thank you

    If you open the page of the AIA on http:///AIA browser, you should be able to go to the Configuration tab and display the version.

  • where is the default folder for internet explore cache victory 8.1

    Hello everyone, I have a question for IE 11, I moved the folder cache in Internet Explorer, but I do not remember Moose to win 8.1 was, I see a folder caches in C:\Users\username\AppData\Local\Microsoft\Windows\,is that it?, and I was wondering is it no problem to move this cache thing, I moved to my E drive which is not an SSD , I'm not all the garbage goes on my SSD drive, so I moved it... It is a good idea? can cause problems with IE 11?

    OK I found-(INetCache) - under C:\Users\default\AppData\Local\Microsoft\Windows
    It does not use my name, but it's under the default folder... Thanks again my friend...

  • How to remove the corners rounded for windows explore

    as well as to explain how to remove the effect of line and shadow thin white border just after the white line for windows explore

    Which cannot be changed unless you change your Windows Classic theme.

    If you increase the size of your window, that you would never notice it.

  • How to find the serial number for old acrobat version

    Hello

    I have an official serial number for acrobat 9 based on an acrobat upgrade older 6. But for the last I 'can' t find the serial number... How to get it?

    If you purchased or registered with adobe, make sure the account used at the time, Adobe ID

    If its currently installed on an old computer, it can be retrieved from this computer.

  • Photoshop cs6 - scanning - how to find the version 32 bit - short cut?

    I had to reinstall Photoshop CS6. I lost my cutting short 32 bit version, so I can plug my EPSON scanner. I downloaded the plugin from the ADOBE support TWAIN and managed to drag the TWAIN file in the plugins folder, I found that:

    C:\Program Files (x 86) \Adobe\Adobe Photoshop CS6\Plug-Ins\


    I downloaded the latest driver for my EPSON scanner and my scanner works perfectly.

    I opened my Photoshop, went to FILE-> IMPORT-> and connected to my Epson Scanner. His name was there and I clicked it.


    In respect of the IMPORT-> WIA scanner works but only as a generic scan.

    Previously, I also used the 32-bit version of my CS6, who, according to Adobe, the two versions are uploaded at the same time.

    However, I can't find the 32 bit version.

    Can someone help me, so I can scan with more options? Thank you.

    Because the 32-bit version seems to be installed right click on the Photoshop.exe and create shortcuts for it.  Copy to your office to your taskbar your startup programs file where you want a.

    The .exe is not displayed because you the settings of Windows has Windows hide known extensions...

  • How to find the serial number for Lightroom 6 autonomous

    I just bought a stand-alone version of Lightroom 6 complete installation in a box retail and try to install it on a Windows machine.

    The installer is one displayed a screen with 6 small boxes where I enter the serial number.  This file on the DVD provided says "You can find the serial number of 24 digits (e.g. 0000 0000 0000 0000 0000 0000) on the back of your door-DVD".  I guess that means that the white paper envelope which contained the DVD.

    There is no number of 24 digits on the envelope.  The back of the envelope contains a small sticker on the lower right corner with two lines.

    -The first line contains a start with the number 9 eight-digit number.

    -The second line contains a mix of 30 letters and special characters starting with DVS/A, LTRM, 6.0, etc.

    (I did not provide the full character set snacks is a unique code for this DVD.)  Please let me know if it needs more.)

    The installation program will accept only characters alpha, only numbers.  Could you please tell me how to locate the 24 digit number he needs.  I can't find it on the envelope.  The box of the product has an Adobe sticker o back, with multiple numbers, but none is a 24 digit number.

    Your help would be appreciated.

    Thank you.

    Problem solved.

    Found the number on the secondary area containing the DVD.

    What is confusing is yesterday I installed Photoshop Elements and the serial number sticker was on the back of the envelope of white paper, not the box insert, so that's where I was initially looking for her.  It's just the opposite for Lightroom.  My suggestion would be to do the things constantly between products.

    Thank you

  • How to find the version of J2EE Weblogic jar

    Hello

    I want to find what version of JSP, Sevlet, EJB, JMS etc are supported by appserver Weblogic 10.3. Y at - it a command to find instead of writing code.

    Thank you

    Published by: user9216908 on March 9, 2010 22:44

    You can open a command prompt, and then set the environment by using the SetDomainenv.cmd file with the domain in which you want to know the version.

    then run the following command:

    Java weblogic.version - verbose

    So, you can get the list of supported standards:
    VERSION INFORMATION FOR THE NAME SERVICE
    ============ ===================
    Kernel Commonj WorkManager v1.1
    TimerService Commonj TimerManager v1.1
    CorbaService CORBA 2.3, IIOP 1.2, RMI-IIOP SFV2, OTS 1.2, CSIv2 level 0 + Stateful
    XMLService XML 1.1
    JTA 1.0.1B transaction service
    JSR - 114, JDBC 3.0 JDBCService
    CustomResourceServerService 1.0.0.0
    Servlet 2.5, JSP 2.1 Servlet container
    WebServices JSR-173, JAX - RPC, JSR-109, WSDL, WS-Addressing, WS-Policy, JAX - B, JA
    X R, WS-Management (HP), UDDI, JAXP - 1.3, WS-Security
    Singleton pre Admin S 1.0 services
    Singleton Services batch Manag 1.0
    EJB EJB 3.0 container
    MDBService EJB 3.0
    EJBTimerService EJB 3.0
    J2EE 1.5 connector
    JMS 1.1 JMS service

    Thank you
    Sandeep

  • How to find the product key for pre-installed WIndows 7 Home Premium?

    I bought a laptop that was provided with Windows Home pre-installed permium.

    How can I load Windows once more, because I don't have the key? How can I find the key on my laptop?

    Look for the COA sticker, normally at the bottom or in the battery compartment:

    COA certificate of authenticity:

    http://www.Microsoft.com/howtotell/content.aspx?PG=COA

    What is the certificate of authenticity for Windows?

    http://Windows.Microsoft.com/en-us/Windows7/what-is-the-Windows-certificate-of-authenticity

Maybe you are looking for

  • Unknown interface LPC device on my Satellite 1955

    I have the Satellite 1955-S803 laptop with Windows XP.Device Manager, show me an unknown device "LPC interface. All the motherboard drivers were installed. Maybe someone knows how to solve the problem?

  • Power Supply Upgrade for a Lenovo 3000 K100

    Greetings, I have a Lenovo desktop computer that I would like to upgrade. Firstly the power supply. I was wondering what is the stronger power supply that I can put. So that when in the future when I purchase an upgrade I won't have to worry about fo

  • error code0x643

    Get this code when installing update Microsoft.net framework 3.5 service pack 1 and 3.5 family update for .net version 2.0 to 3.5 (kb951847x86)

  • Cannot open attachments in Windows Mail

    Can not open attachments [such as wmv.] in Windows MailUnless I first save the attachment and then open it from the location of the saved file. After that attachments can be opened in WM until the next time I start the PC. Then I do the routine save

  • Printers HP j4680 all-in-one: report of transmission J4680

    I have a HP j4680 all-in-one printer and am running Windows 7.  I no longer receive the audit reports of transmission when I send a fax.  I received of these reports, but for some reason any printer no longer prints this form after the fax is sent.