11g & accessibility / differences 10.1.3 vs 11g

Is it some significant differences between accessibility features in 10.1.3 and 11g ?

For accessibility features in 11 please review the Web User Interface Developer's Guide.
http://st-doc.us.oracle.com/review/AS11/web.1111/b31973/toc.htm
Take a look at Features in section 1.2.14 Acessibility Features and Section 20 Developing Accessible ADF Faces Pages

Similar Messages

  • Accessibility differences between version 9 and XI?

    Hi I have posted a question in the Adobe Reader forum, but it is more of a developer question and I assume that is why no one has responded to it so far:
    http://forums.adobe.com/thread/1155120?tstart=0
    I would appreciate it if a moderator could move the thread into the 'SDK' section of this forum.

    Hi I have managed to work out why I couldn't access the element windows - I had to disable protected mode within Adobe Reader.
    Though now I have a different issue. When I use AutomationElement.FindFirst on the AcrobatSDIWindow, it causes my application to freeze, then Adobe Reader sits there and uses 50% CPU until I close my application.
    The same code still works in Adobe Reader 9.5.3. Is there any reason for this?
    I spoke to Adobe phone support about this but they wanted to charge for support. I'm not paying them if their update caused the software to break.

  • WCF-Custom Biztalk 2013 - Access to SQL Server 2014 Database

    Hi,
    i don't see nowhere of capability from the Biztalk adapter to access differente version of Sql server.
    I want to send ou receive information with a WCF-Custom from SQL Server 2014, i'm in Biztalk 2013 (not R2 ) it's possible ?
    Do you have a link or a list of version autorized to accessed by the wcf-custom Sql binging ?
    Thanks a lot

    Hi, I can suppose that the main problem for Joao is not if it works in general or not.
    The real problem is that he is not sure if this configuration is officially supported by Microsoft.
    If you are developing an integration project for a client you need to have this guarantee. If not, you can have an unsupported scenario, and if something fails you could have a big problem with your client.
    If I were you, I would talk with the client account manager about this.
    Regards.

  • Multiple connection pools problem

    Hi,
    Here is the problem. We use several connection pools to access differents
    schema of our database. We also have a connection pool
    opened for Weblogic Commerce which connects to the Commerce schema in our
    database. Here is a sample of our weblogic.properties file:
    #========================================================
    # WeblogicCommerce pool and data source
    #========================================================
    weblogic.jdbc.connectionPool.commercePool=\
    url=jdbc:oracle:thin:@careon_dev:1521:careon,\
    driver=oracle.jdbc.driver.OracleDriver,\
    loginDelaySecs=1,\
    initialCapacity=2,\
    maxCapacity=10,\
    capacityIncrement=1,\
    allowShrinking=true,\
    shrinkPeriodMins=15,\
    testConnsOnReserve=true,\
    props=user=WLCS_TEST;password=WLCS_TEST,\
    testTable=WLCS_IS_ALIVE,\
    refreshMinutes=5
    weblogic.allow.reserve.weblogic.jdbc.connectionPool.commercePool=everyone,
    CareonDev
    weblogic.jdbc.DataSource.weblogic.jdbc.jts.commercePool=commercePool
    #========================================================
    # WeblogicCommerce Document Management pool
    #========================================================
    # This is the pool the beans reference
    weblogic.jdbc.connectionPool.docPool=\
    url=jdbc:beasys:docmgmt:com.beasys.commerce.axiom.document.ref.RefDocumentPr
    ovider,\
    driver=com.beasys.commerce.axiom.document.jdbc.Driver,\
    loginDelaySecs=1,\
    initialCapacity=2,\
    maxCapacity=10,\
    capacityIncrement=1,\
    allowShrinking=true,\
    shrinkPeriodMins=15,\
    refreshMinutes=10,\
    props=jdbc.url=jdbc:weblogic:pool:commercePool;\
    jdbc.isPooled=true;\
    weblogic.t3.waitForConnection=true;\
    weblogic.t3.waitSecondsForConnection=999999999999;\
    docBase=C:/WebLogicCommerce/dmsBase/;\
    schemaXML=C:/WebLogicCommerce/dmsBase/doc-schema.xml
    weblogic.allow.reserve.weblogic.jdbc.connectionPool.docPool=everyone,
    CareonDev
    # Add the show doc servlet
    weblogic.httpd.register.ShowDocServlet=com.beasys.commerce.content.ShowDocSe
    rvlet
    #========================================================
    # Careon's CDRpool and data source
    #========================================================
    weblogic.jdbc.connectionPool.cdrPool=\
    url=jdbc:oracle:thin:@careon_dev:1521:careon,\
    driver=oracle.jdbc.driver.OracleDriver,\
    initialCapacity=2,\
    maxCapacity=10,\
    capacityIncrement=2,\
    allowShrinking=true,\
    shrinkPeriodMins=15,\
    refreshMinutes=10,\
    testTable=dual,\
    props=user=test;password=test
    weblogic.allow.reserve.weblogic.jdbc.connectionPool.cdrPool=everyone,
    CareonDev
    Inpredictably, we obtain the following error:
    java.sql.SQLException: Connection has already been created in this tx
    context for pool named commercePool. Illegal attempt to create connection
    from another pool: cdrPool
    Does anybody have a solution or at least pointers ?
    Many thanks,
    Olivier

    Goh Yew Yap wrote:
    >
    Is there any workaround for this?Yes. In 6.0, presuming you use XA-compliant JDBC drivers
    for the DBMS or DBMSes involved, transactions will be able
    to involve any number of pools/DBMSes in a transaction.
    For 5.1 and/or for DBMSes that do not have an XA-compliant
    JDBC driver, you can write BMP beans that will do their own
    JDBC access to all but one DBMS, using the non-transactional
    pool driver, and you will be fully responsible for any
    transactional state involving this under-the-covers JDBC.
    This is easy to do in cases where a second DBMS is used
    primarily for queries, not updates, so the non-JTS-managed
    JDBC access can't corrupt that DBMS.
    Joe
    >
    "Joseph Weinstein" <[email protected]> wrote in message
    news:[email protected]...
    Olivier Baujard wrote:
    Hi,
    Here is the problem.
    Inpredictably, we obtain the following error:
    java.sql.SQLException: Connection has already been created in this tx
    context for pool named commercePool. Illegal attempt to create connection
    from another pool: cdrPoolHi. This means that within a single JTS/EJB transaction, there weremultiple
    beans and/or JSPs etc that got JDBC connections to do work, but not all ofthese
    routines asked for a connection from the same pool. That's a requirementfor
    5.1 or 4.5. The transaction coordinator and JTS driver cooperate to ensurethat
    only one JDBC connection is really ever used in a given transaction. Ifmultiple
    beans ask for a pool connection within a given tx, we ensure that theyreally get
    the same connection. This is because JDBC drivers typically don'timplement
    2-phase commit, so we must enforse that only one DBMS connection isinvolved so we
    can just commit or roll back on it, and ensure transactional correctness.If a
    bean asks for a connection from a different pool than a previous bean inthe same
    tx, we know we can't give them the already-established connection, so wethrow
    this exception.
    For 6.0, for pools made with XA-compliant JDBC drivers, this will be OK.
    Joe
    We use several connection pools to access differents
    schema of our database. We also have a connection pool
    opened for Weblogic Commerce which connects to the Commerce schema in
    our
    database. Here is a sample of our weblogic.properties file:
    #========================================================
    # WeblogicCommerce pool and data source
    #========================================================
    weblogic.jdbc.connectionPool.commercePool=\
    url=jdbc:oracle:thin:@careon_dev:1521:careon,\
    driver=oracle.jdbc.driver.OracleDriver,\
    loginDelaySecs=1,\
    initialCapacity=2,\
    maxCapacity=10,\
    capacityIncrement=1,\
    allowShrinking=true,\
    shrinkPeriodMins=15,\
    testConnsOnReserve=true,\
    props=user=WLCS_TEST;password=WLCS_TEST,\
    testTable=WLCS_IS_ALIVE,\
    refreshMinutes=5
    weblogic.allow.reserve.weblogic.jdbc.connectionPool.commercePool=everyone,
    CareonDev
    weblogic.jdbc.DataSource.weblogic.jdbc.jts.commercePool=commercePool
    #========================================================
    # WeblogicCommerce Document Management pool
    #========================================================
    # This is the pool the beans reference
    weblogic.jdbc.connectionPool.docPool=\
    url=jdbc:beasys:docmgmt:com.beasys.commerce.axiom.document.ref.RefDocumentPr
    ovider,\
    driver=com.beasys.commerce.axiom.document.jdbc.Driver,\
    loginDelaySecs=1,\
    initialCapacity=2,\
    maxCapacity=10,\
    capacityIncrement=1,\
    allowShrinking=true,\
    shrinkPeriodMins=15,\
    refreshMinutes=10,\
    props=jdbc.url=jdbc:weblogic:pool:commercePool;\
    jdbc.isPooled=true;\
    weblogic.t3.waitForConnection=true;\
    weblogic.t3.waitSecondsForConnection=999999999999;\
    docBase=C:/WebLogicCommerce/dmsBase/;\
    schemaXML=C:/WebLogicCommerce/dmsBase/doc-schema.xml
    weblogic.allow.reserve.weblogic.jdbc.connectionPool.docPool=everyone,
    CareonDev
    # Add the show doc servlet
    weblogic.httpd.register.ShowDocServlet=com.beasys.commerce.content.ShowDocSe
    rvlet
    #========================================================
    # Careon's CDRpool and data source
    #========================================================
    weblogic.jdbc.connectionPool.cdrPool=\
    url=jdbc:oracle:thin:@careon_dev:1521:careon,\
    driver=oracle.jdbc.driver.OracleDriver,\
    initialCapacity=2,\
    maxCapacity=10,\
    capacityIncrement=2,\
    allowShrinking=true,\
    shrinkPeriodMins=15,\
    refreshMinutes=10,\
    testTable=dual,\
    props=user=test;password=test
    weblogic.allow.reserve.weblogic.jdbc.connectionPool.cdrPool=everyone,
    CareonDev
    Inpredictably, we obtain the following error:
    java.sql.SQLException: Connection has already been created in this tx
    context for pool named commercePool. Illegal attempt to createconnection
    from another pool: cdrPool
    Does anybody have a solution or at least pointers ?
    Many thanks,
    Olivier--
    PS: Folks: BEA WebLogic is in S.F. with both entry and advanced positionsfor
    people who want to work with Java and E-Commerce infrastructure products.Send
    resumes to [email protected]
    The Weblogic Application Server from BEA
    JavaWorld Editor's Choice Award: Best Web Application Server
    Java Developer's Journal Editor's Choice Award: Best Web ApplicationServer
    Crossroads A-List Award: Rapid Application Development Tools for Java
    Intelligent Enterprise RealWare: Best Application Using a ComponentArchitecture
    http://www.bea.com/press/awards_weblogic.html
    PS: Folks: BEA WebLogic is in S.F. with both entry and advanced positions for
    people who want to work with Java and E-Commerce infrastructure products. Send
    resumes to [email protected]
    The Weblogic Application Server from BEA
    JavaWorld Editor's Choice Award: Best Web Application Server
    Java Developer's Journal Editor's Choice Award: Best Web Application Server
    Crossroads A-List Award: Rapid Application Development Tools for Java
    Intelligent Enterprise RealWare: Best Application Using a Component Architecture
    http://www.bea.com/press/awards_weblogic.html

  • Oracle performance problem -

    We are facing some critical performance problems with one of the
    tables. I have a table with the schema given below.When there
    are around 2 lakh entries in this table, if I give a select count
    (*) , it takes around 20 seconds to return the count. Where as
    any other table in the same database, returns the count in less
    than 2 seconds for around 1 lakh entries. I am not able to
    figure out where the performance bottle neck is.
    Configuration:
    Oracle 8.0.5 on Windows NT 4.0
    USER_NAME NOT NULL VARCHAR2(30)
    TASK_ID NUMBER // Unique
    TASK_NAME NOT NULL VARCHAR2(100)
    TERMINAL_NAME VARCHAR2(30)
    TASK_DATE DATE
    TASK_STATUS NOT NULL NUMBER
    PARENT_ID NUMBER
    NE_NAME NOT NULL VARCHAR2(30)
    ENM_JOBID VARCHAR2(30)
    CMD_CONTENT VARCHAR2(4000)
    CMD_RESPONSE VARCHAR2(4000)
    RESPONSE_TIME DATE
    TASK_TYPE NUMBER
    SCHEDULE_TIME DATE
    All the tables are present in the same table space. So
    I guess it could not be because of any disk access differences
    between tables. Have you guys faced any such problems ? Could
    this be because of the huge CMD_RESPONSE and CMD_CONTENT
    fields ?

    Thanks a lot.
    I would like to know , how I can optimise the performance when
    having longer records. Will increasing the block size help in
    getting better performance ? If so,is there any other
    disadvantage in increasing the block size.
    My actual requirement is to read all the records in the
    table. So, a static cursor is created on the server and I do a
    block fetch(SQLFetchScrolll). I use ODBC for this purpose. The
    first fetch takes a lot of time, around 50 seconds or so for 2
    lakh records. Any ideas how to optimise the same ???
    Best Regards,
    Vignesh

  • Description of Seeded HR Responsibilities

    Forgive me if I'm posting in the wrong area...
    I am using the E-Business Suite (db version 9.2.0.6.0).
    At one time, I ran across a document that detailed the progression of allowed functions from one seeded HR responsibility to another. For example, we have US HRMS, US HR MANAGER, US SUPER SRMS MANAGER, etc...and this document showed the accessibility difference between all these different areas. It would say US HRMS, and all the allowable functions. Then it would say in the next column US HRMS MANAGER and it would show all the same functions, plus the additional functions unique to that responsibility...and so on as the functions and accessibility increase. Basically we want to know "What's the difference?" So we can determine what level of access various users need.
    If any of you recall something like this and could point me in the right direction, I would really appreciate it. I'm sure I could join this data via TOAD off FND tables, but I thought I would ask before I try to recreate something that's probably alread out there.
    Thanks...

    Hi,
    You posted this in English and this is Spanish forum, please move it to English HR forum.
    Regards,

  • Hard drive speed observation

    I got to compare two 2.16GHz MacBook Pros tonight, one with a Toshiba 120GB 5400rpm drive (MK1234GSX) and one with a Seagate 100GB 7200rpm drive (ST910021AS). Wow, what a difference! The 100GB boots in like 22 seconds, the 120GB boots in like 38 seconds. Drive access difference is even bigger (during boot most of the time difference is the blue OS X loading bar with is blinding fast on the 100GB).
    I've compared notebooks drive before but never seen this huge a difference. The 120GB 5400rpm Seagate in my 17" PowerBook was reasonably fast. Either this 7200rpm is blindingly fast or the Toshiba drive is really slow. Now I know why in all these reviews popping up the reviewers were given 2.16GHz with 100GB 7200 rpm drives. Those drives are really really fast!

    Not a question.

  • Problem with Apex_application.f01(i),Apex_application.f02(i),

    Hi,
    I have written Apex_item.check box,apex_item.text in SQL query,so i got check box and text item to each row in a report..
    here my requirement is that i should pass text item value which has enable the check box so in Process i have written code like..
    FOR i IN 1 .. APEX_Application.g_f01.COUNT
    LOOP
    apps.napp_start_ir_pkg.generate_report_data(APEX_Application.g_f01(i)
    ,APEX_Application.g_f02(i)
    END LOOP;
    COMMIT;
    Here the issue is I have enabled 5 check boxes randomly i.e row 1,5,6,8,9 and entered values in a text item respectively after that i click submit button.so here APEX_Application.g_f02(i) are passing null values to the procedure..
    How can i pass text values to procedure?
    I have been facing this problem for a 10 days..can you please guide me how to write code in process for passing the text values also..
    Thanks in advance...
    Regards
    Narender B

    Bob37 wrote:
    I can't imagine how that would work. I can only repeat what I said above in the reply Posted: Nov 11, 2011 3:26 PM Your solution should work, however not in all cases; certainly not without restricting the tabular form (specifically, removing the ability for the user to re-order fields)
    You should have values in g_f02 after submit, but you can't access G_f02 using "g_f02(i)"
    'i' will be equal to 1,2,3,4,5 and you need (1,5,6,8,9) which are the row numbers of the checked checkboxes.
    Absolutely right
    To resolve that bit, your code should be
    FOR i IN 1 .. APEX_Application.g_f01.COUNT
    LOOP
    apps.napp_start_ir_pkg.generate_report_data(APEX_Application.g_f01(i)
    ,APEX_Application.g_f02(Apex_application.g_f01(i))
    END LOOP;
    COMMIT;Note the G_f02 array access difference using g_f02(Apex_application.g_f01(i)) instead of g_f02(i)
    In other words, and in your example,
    Apex_application.g_f01(1) = 1
    Apex_application.g_f01(2) = 5
    Apex_application.g_f01(3) = 6
    Apex_application.g_f01(4) = 8
    Apex_application.g_f01(5) = 9
    This is not entirely correct, specifically it would only be correct if the checkbox field f01 maps onto the relative row number (i.e. the row number in the form itself, rather than the query). The OP does not indicate exactly which value he has mapped to f01 - if he's using the SQL pseudocolumn rownum AND he's allowing the form to be re-ordered, he's going to be in for a nasty shock when rows start being updated randomly (the absolute rownum from the query is retained, thus when you re-order, this value jumps all over the place).
    It looks like he's mapped some sort of unique ID field onto f01, which I believe will not work either (because he still has the same problem - namely that the index for the array f02 won't necessarily match that of f01...
    Bearing in mind, I'm still using 3.x, there might be an apex-specific row number which retains the relative row number value - typically, I map my checkbox field to a unique ID and use that to make updates, although I've not really implemented many forms that reference multiple page items in the way the OP wishes to.

  • Main differences between oracle bpm 10.3 vs 11g

    Hi.!!
    Some one knows which are the differences between the last version and the 11g version of the oracle bpm.?
    I need to know what are the differences to find out which version to implement a project...
    help me..!!

    11g relies upon SOA suite components for much of the underlying infrastructure.
    Interactive activities are no longer modeled using the simple JSF based ALBPM style screen flows and UI editor. In 11g the human workflow engine is used for this purpose - it handles user routing, notifications, data associations, etc. The actual implementation is done in ADF using task flows. This gives you more flexibility, with the caveat of a bit more complexity.
    11g is a "codeless" environment. ALBPM style Automatic activities and PBL code are a thing of the past. Business logic is now performed either using Business Rules, or by calling Web Services. There are also adapters for accessing the database, FTP, and reading/writing files on the filesystem. Data flows through the process in the form of XML, some of which is abstracted away from the developer in the form of Business Objects in the catalog. However, knowing XML and XML related technologies is now much more important (XSD, XPath, XSL, etc.)
    The Eclipse style IDE is no longer used for design time. JDeveloper is the new IDE. You can also use BPM composer for some online (it's a web based app) project design and publishing.
    The Process Administrator app is now gone - that functionality is replaced by fusion middleware control (Enterprise Manager) and the workspace itself.
    More details can be found in the documentation:
    http://download.oracle.com/docs/cd/E14571_01/soa.htm

  • Difference in select for update of - in Oracle Database 10g and 11g

    Hi, I found out that Oracle Database 10g and 11g treat the following PL/SQL block differently (I am using scott schema for convenience):
    DECLARE
      v_ename bonus.ename%TYPE;
    BEGIN
      SELECT b.ename
        INTO v_ename
        FROM bonus b
        JOIN emp e ON b.ename = e.ename
        JOIN dept d ON d.deptno = e.deptno
       WHERE b.ename = 'Scott'
         FOR UPDATE OF b.ename;
    END;
    /While in 10g (10.2) this code ends successfully (well NO_DATA_FOUND exception is raised but that is expected), in 11g (11.2) it raises exception "column ambiguously defined". And that is definitely not expected. It seems like it does not take into account table alias because I found out that when I change the column in FOR UPDATE OF e.empno (also does not work) to e.mgr (which is unique) it starts working. So is this some error in 11g? Any thoughts?
    Edited by: Libor Nenadál on 29.4.2010 21:46
    It seems that my question was answered here - http://stackoverflow.com/questions/2736426/difference-in-select-for-update-of-in-oracle-database-10g-and-11g

    The behaviour seems like it really is a bug and can be avoided using non-ANSI syntax. (It makes me wonder why Oracle maintains two query languages while dumb me thinks that this is just a preprocessor matter and query engine could be the same).

  • Font difference in 6i and 11g

    Hi,
    We are doing a conversion of oracle reports from 6i to 11g and we see some differences in fonts in the 11g version. For example some reports in 11g dont have the font type Palentino used in 6i. How do I get these font files or which folders do I find these font files. Can somebody let me know where in 6i can I find them and where do I need to copy these files into 11g and if need to make any configuration changes.
    Thanks and Regards

    No problem, can you help me with the font files on the windows machine ... I have both 6i and 11g installed on my local windows machine. Since they are both on the same OS and use same font folders from OS i dont understand why the difference then.
    Thanks and Regards

  • Difference in behavior of sql and pl/sql after migrating from 9i to 11g

    after migrating our database from oracle 9i to oracle11g, the developpers are worry that the behavior of the queries and pl/sql procedures/functions will change
    example :
    in 9i, select salary,count(*) from emp group by salary, it will display the rows sorted by salary
    in 11gi, select salary,count(*) from emp group by salary, it will display the rows not sorted by default, we have to add the clause order by salary.
    somebody could give the list of other difference in behavior (SQL and PL/SQL) agter migrating from 9i to 11g
    Thanks a lot.

    Tell your developers: garbage in - garbage out. In relational databases only ORDER BY ensures row order. If your developers relied on GROUP BY implemented by SORT and therefore returning ordered rows they had to realize code they wrote is Oracle release dependent and sooner or later code would require changes. And that "sooner or later" is now reality. In newer versions ORACLE can do GROUP BY via SORT or via HASH. And if it is done via HASH - don't expect ordered results. So tell your developers "payback time".
    SY.

  • What's the difference between AIA 3.0 and AIA FP 11g Release 1 (11.1.1.4.0)

    Hi, experts,
    Have a question need your great help and clarification, you know we have Oracle AIA Foundation Pack 2.5 based on SOA 10.1.3.4 installation, the new release for SOA has been released on this version Oracle Fusion Middleware 11g R1 (11.1.1.4.x) Released the other day, within this version, we have a Foundation Pack 11g Release 1 (11.1.1.4.0) based on SOA11g.
    My questions are as below
    1) What's difference between AIA 3.0 and Foundation Pack 11g Release 1 (11.1.1.4.0)?
    2) We know, on the top of AIA 2.5, we have Foundation Pack 11g Release 1 (11.1.1.2.0) and Foundation Pack 11g Release 1 (11.1.1.4.0), doesn't mean that the Foundation Pack 11g Release 1 (11.1.1.4.0) has another nickname that is AIA3.0?
    3) Does anyone provide AIA 3.0 installation and implementation guide?
    Appreciated if you could provide some suggestions or comments based on above question, thanks in advance!

    Please see the answers below...
    #1 . AIA 3.0 is internal project name, AIA 11g R1 is an official release which is 11.1.1.2.0, then after two patch sets released they are 11.1.1.3.0 and 11.1.1.4.0
    #2 hope the above answered your question.
    #3 AIA 11g R1 x install and developer guides available on OTN.
    Regards,
    Narayana

  • Is there a way to deny access to BI Publisher -Report job in OBIEE 11g?

    Thank you all for the helpful information in the posts. I am trying to disable or not to display Report job under published reporting in OBIEE 11g. Could any one of you you please help me with the steps?
    My issue:
    I am pretty new to OBIEE and we are using OBIEE 11g when the user clicks on the new drop down, i am trying to disable or turnoff Report job under published reporting for a user group. I tried to find the relevant components for published reporting to deny access to report job under manage privileges but no luck i couldn't find any and i realized that i should be looking into Manage Bi publisher roles and responsibilities but i cannot remove the roles. Please help me with the steps and the options where i need to go and what i should do to not to display the report job. Your help is greatly appreciated, if i am not clear please let me know i will try to rephrase or explain it better
    FYI
    We are using LDAP for user creation and we have created a new group and created a test user belongs to that group and that user should not see the Report job. When i am seeing the users roles and responsibilities it is also showing me other two roles authenticated user role and BI consumer role for the test user, when i asked the admin guy dealing with LDAP he said he only associated the user with that only new group. Please advice
    Thanks,
    Ravi
    Edited by: user1146711 on Aug 18, 2011 2:00 PM
    Edited by: user1146711 on Aug 18, 2011 2:02 PM
    Edited by: user1146711 on Aug 18, 2011 2:03 PM

    In EM, go to Weblogic Domain, right click on bifoundation_domain and on the Security menu choose Application Policies.
    Set Application Stripe to obi and click the blue arrow search button.
    Highlight BIConsumer and click Edit.
    Under Permissions locate Resource Name oracle.bi.publisher.scheduleReport. Highlight this and click Delete...
    Click OK (top right corner).
    Now log your user out of OBIEE and back in again, and the option should have disappeared from their New menu.

  • Error in accessing the sample application content from the OBIEE 11g

    I installed OBIEE 11g + Oracle 11g database on one machine. Everything went smoothly with no issues.
    I can connection to the database from SQLPLUS.
    Then I followed instructions to deploy sample app. After everything is done, when I try to access the dashboards, reports etc from the OBIEE 11g home page , I get the error below.
    I am stuc kand dont know how to proceed. I verified tnsnames.ora and everything seems good.
    In the SampleAPp.RPD, I set DB_SID as "ORCL" and DB_HOST as my computer name (along with domain name). No idea how to proceed from here..
    I really appreciate any help.
    Odbc driver returned an error (SQLExecDirectW).
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 43119] Query Failed: [nQSError: 17001] Oracle Error code: 12541, message: ORA-12541: TNS:no listener at OCI call OCIServerAttach. [nQSError: 17014] Could not connect to Oracle database. (HY000)
    Thanks

    Thanks for the replies.
    1) Was the oracle installed in multiple instances ? if yes set the Variable path correctly pointing to your right folder
    Yes, oracle had multiple instances. I tried copying the tnsnames.ora from my oracle home to the Oracle_BI1/network/admin directory as 11g apparetnly comes with a Oracle client as BIFACTs suggested in his/her reply. I put the same in the path variable
    2) Try to ping the service_name tnsping service_name(SID) from command prompt
    This works.
    3) check whether you may have "white spaces" in tnsnames.ora file at starting of entry
    No white spaces appeated
    I still see the same issue! I logged in as developer credentials as mentioned the sample app documentation.
    I get the same "cannot connect to database" error.
    I once in a while see an issue with javahost not starting. Not sure what is the impact of javahsot not running and all the other managed processes running.
    Please help....

Maybe you are looking for

  • IP Address Changed on my AD - Now Authentication is not Working

    I got a new service provider for my home network, and as a result their router provided a new set of IP addresses. My home network is supported by an OD running on Mac OS X Server v 10.4.11. The laptops in the house seem to be OK, but my main machine

  • Need to stop irrelevant input into inbox / how to do a REAL filter?

    I finally found the User Manual. This should be put up at the head of the website - not hidden away. It was recently posted. I didn't know it existed. I discovered it by accident. Some of the stuff in the User Manual is confusing and not well or comp

  • Error In WorkBook Bex Analyzer : Messages available

    Hello Experts, When i open a Workbook, I have this message in the status bar: "Messages available; double-click to display them" When I double click, I have a pop-up window with warning "there is a condition.., results row supress..." Our client don'

  • [solved] network

    Hi all, I've been trying to set network working on my desktop but haven't been succeeded till now.. I noticed a weird situation (at least to me) if I do ping google: ping -c 3 www.google.com I'll get in the final statistics time = 11149ms but if I do

  • Lightroom does not read DR data from Fujifilm X100

    NB this also applies to ACR. If I use the Auto DR setting on my Fujifilm X100, and that then chooses DR200 or DR400, the raw files are underexposed by 1 or 2 stops respectively when Lightroom imports them. Apple Aperture however reads the DR data and