Specified database not found

Hi!
Well, one old subject, I recall (had this written here long time ago) -- ZCM 10.3.4, trying to backup db from command-line, but ...
SQL Anywhere Backup Utility Version 10.0.1.3960
Specified database not found
DB is there and accessible and running and ZCC is ok and ZCM does work and db is via Sybase Central accessible etc. and probably when I restart ZCM services on server it will be backed up also with utility, but ... any ideas how to accomplish this wo services restart. Can't dbping server. Server name is also written ok in command etc.
More thanks, Alar.

NovAlf,
It appears that in the past few days you have not received a response to your
posting. That concerns us, and has triggered this automated reply.
Has your problem been resolved? If not, you might try one of the following options:
- Visit http://support.novell.com and search the knowledgebase and/or check all
the other self support options and support programs available.
- You could also try posting your message again. Make sure it is posted in the
correct newsgroup. (http://forums.novell.com)
Be sure to read the forum FAQ about what to expect in the way of responses:
http://forums.novell.com/faq.php
If this is a reply to a duplicate posting, please ignore and accept our apologies
and rest assured we will issue a stern reprimand to our posting bot.
Good luck!
Your Novell Product Support Forums Team
http://forums.novell.com/

Similar Messages

  • Shared services database not found in the specified database

    Hi Guys,
    In Hyperion EPM System confirurator,i gave all the fields and click next button it show error message "Shared services database not found in the specified database"

    Hi ,
    1. Pls confirm me one thing. Did you re -install version 11.
    2. Re intstallation of version 11 has lot of issues ( atleast 11.1.1.1).
    Sandeep Reddy Enti
    HCC
    http://hyperionconsutlancy.com/

  • Java.sql.SQLDataException: ORA-01878: specified field not found in datetime

    I am getting the exception mentioned in the subject field. Here is the query
    select * from tabel_abc where from_tz(cast(LAST_RECEIVED_TIME + timeout_duration/86400 as timestamp),'UTC') <systimestamp at time zone 'UTC';
    This is happening only for the during the daylight saving, because the date operation is returning the incorrect time value.
    timeout_duration holds the value in terms of number of seconds.
    Please suggest how to resolve the issue.
    Caused by: java.sql.SQLDataException: ORA-01878: specified field not found in
    datetime or interval
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:457)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405)
    at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:889)
    at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:476)
    at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:204)
    at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:540)
    at
    oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:217)
    at
    oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.ja
    va:1079)
    at
    oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1
    293)
    at
    oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1
    419)
    at
    oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedState
    ment.java:3752)
    at
    oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatemen
    t.java:3806)
    at
    oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedS
    tatementWrapper.java:1667)
    at
    weblogic.jdbc.wrapper.PreparedStatement.executeQuery(PreparedStatement.java:13
    5)
    at

    >
    When I run the following expression on this value I get the ORA-01878 error:
    (EXTRACT(DAY FROM ((ETD_ZULU - 4/24) - SYSTIMESTAMP)))
    >
    That isn't the same as the snippet you first posted
    This works
    select EXTRACT(DAY FROM ((ETD_ZULU - 4/24) - SYSTIMESTAMP)) from
    (select cast (systimestamp as timestamp(6)) etd_zulu from dual)The first snippet you posted was
    >
    select * from tabel_abc where from_tz(cast(LAST_RECEIVED_TIME + timeout_duration/86400 as timestamp),'UTC') <systimestamp at time zone 'UTC';
    >
    And it includes time zone. All of the web references I have found indicate the problem is either a missing timezone or a timezone mismatch.
    I can't reproduce the problem with the last snippet you used. Are you certain that ETD_ZULE is timestamp and does not include timezone?
    Do you have a complete query that fails? If so, try to narrow the query down to one record that is causing the problem. If you have to you can use brute force approach. Assume that 60 records should be produced. Add
    WHERE ROWNUM < 30to the query. If it runs clean the problem is in the second half so use '< 40', and keep testing until you know which record. Then examine the contents of the field for that record.
    Without some code to try to reproduce the problem there isn't much other help to offer.

  • Error: The channel class 'mx.messaging.channels.AMFChannel' specified was not found

    Hi guys. I'm stuck with the class not found error trying to use remote objects with BlazeDS. I'm building the application using flex sdk 3, Ant flexTasks.jar (without FlexBuilder) and Tomcat 5.5.17. The result after clicking on the Remote service button is a window with the following error message: <br />[MessagingError message='The channel class 'mx.messaging.channels.AMFChannel' specified was not found.']<br /><br />In my code, I have in main.mxml:<br /><?xml version="1.0" encoding="utf-8"?><br /><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"layout="vertical"><br /><mx:Script>..CDATA[import mx.controls.Alert;..</mx:Script><br /><mx:RemoteObject id="remObj" destination="product" result="Alert.show(event.result.toString());" fault="Alert.show(event.fault.faultString);"/><br /><mx:Button id="remoteService" label="Remote Service" click="remObj.getResults('MyName');"/><br /></mx:Application><br /><br />In remoting-config.xml:<br /><?xml version="1.0" encoding="UTF-8"?><br /><service id="remoting-service" class="flex.messaging.services.RemotingService"><br />    <adapters><br />        <adapter-definition id="java-object" class="flex.messaging.services.remoting.adapters.JavaAdapter" default="true"/><br />    </adapters><br />    <default-channels><br />        <channel ref="my-amf"/><br />    </default-channels><br />     <destination id="product" channels="my-amf"><br />         <properties><br />           <source>flex.example.ProductService</source><br />             <scope>application</scope><br />         </properties><br />         <adapter ref="java-object"/><br />     </destination><br /></service><br /><br />In java:<br />package flex.examples.ProductService;<br />public class ProductService{     <br />public String getResults(String name)<br />{<br />     String result = null;<br />     result = "Hi " + name + ", this is a service and the time now is : " + new Date();<br />     return result;<br />     }<br />}<br /><br />The services-config.xml is a standard like delivered within blazeds.war.<br /><br />My guess is that something is wrong is with the compilation. My Ant compile task looks like:<br /> <target name="compile_flex_examples"><br />     <mxmlc file="${param1}" keep-generated-actionscript="true"<br />           context-root="${app.name}"  <br />         services="${webinf}/flex/services-config.xml"><br />                   <compiler.library-path dir="${FLEX_HOME}/frameworks" <br />                 append="true"><br />                         <include name="${webinf}/lib/" /><br />                   </compiler.library-path><br />                   <compiler.library-path dir="${FLEX_HOME}/frameworks"       <br />                 append="true"><br />                        <include name="libs/flex.swc" /><br />                      <include name="libs/rpc.swc" /><br />                      <include name="libs/utilities.swc" /><br />                      <include name="libs/fds.swc" /><br />                   </compiler.library-path><br />         <load-config filename="${FLEX_HOME}/frameworks/flex-config.xml"/><br />         <source-path path-element="${FLEX_HOME}/frameworks"/><br />     </mxmlc><br /> </target><br /><br />Any idea why Flex can not find the mx.messaging.channels.AMFChannel class? Any hint very appeciated.<br /><br />Thanks in advance.<br /><br />Devus

    Did you have figure out the problem to this?
    I am getting the same error message. I had two interdependant applications that were working fine when I specify a service-config.xml file at compire time. However when I try to dynamiclly configure the services at runtime, one application works, but the other doesn't. I'm not sure why mx.messaging.channels.AMFChannel is available in the one app, but not the other.
    Any pointers???

  • Specified anchor not found in the model in SAP Records Management

    Hi Experts,
    We are on SRM 7.0 SP 8 PPS with ECC 6.0 Ehp 4  with RM.
    I have managed to Integrate SRM with RM with some issues.
    The issues are:
    RFx with attachment is not displayed in RM through related links.
    Whereas RFx without attachments are visible.
    Contract and PO with attachment are also visible in RM.
    The only piece remaining is the RFx with attachments:
    Errors in SLG1 RM client are:
    Source: CL_SRM_POID===================CP , CL_SRM_POID===================CM012 ,        28
    Message no. SRM_REGISTRY151
    Invalid Service Provider Space ID
    CL_SRM_POID_DIRECTORY=========CP , CL_SRM_POID_DIRECTORY=========CM001 ,        56
    Message no. SRM_REGISTRY151
    The interface reference transferred for the POID object is invalid
    Message no. BL001
    Source: CL_SRM_SP_RECORD==============CP , CL_SRM_SP_RECORD==============CM00J ,        12
    Message no. SRM_REGISTRY151
    Back End: Anchor Not Found
    Message no. BL001
    Error during Records Management update for SRM/EBP element Object ID: 4000000700 Logical System: LS_SRD600 Processing mode: CREATE
    Message no. /SAPPSPRO/RM_UPD_ERR000
    Error with creation of an attachment POID. SPS ID
    Message no. /SAPPSPRO/RM_UPD_ERR017
    Could not add elements to record
    Message no. /SAPPSPRO/RM_UPD_ERR006
    Could not update POID relationship directory
    Message no. /SAPPSPRO/RM_UPD_ERR007
    The SRMCALLMON XML errors are:
    Application Error:
    SRM_GENERIC_SP</ID>    <NUMBER>820</NUMBER>
      <MESSAGE>An internal error has occurred -- check application log</MESSAGE>
    SRM_GENERIC_SP</ID>   <NUMBER>812</NUMBER>
      <MESSAGE>Specified anchor not found in the model
    This is happening only to RFx with attachments.  If i save an RFx without attachment, then its displayed in RM.  If i add attachments later to the RFx still its not displayed in RM.
    Kindly help me out, Gurus.
    with regards,
    Freemindmind.

    anybody?

  • Datasource: ORA-02019: connection description for remote database not found

    Hi,
    I recently made the datasource to point to a new host, and using the EM console tested the connectivity to the datasource to be successful.
    Java code that refers to the DS is also the same as before that was working as only the connection string has been changed, but now trying to access the web-application shows the following error in the logs:
    ==============
    Exception::java.sql.SQLException: ORA-02019: connection description for remote database not found
    oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)
    oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:316)
    oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:282)
    oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:639)
    oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:113)
    oracle.jdbc.driver.T4CStatement.execute_for_describe(T4CStatement.java:431)
    oracle.jdbc.driver.OracleStatement.execute_maybe_describe(OracleStatement.java:1029)
    oracle.jdbc.driver.T4CStatement.execute_maybe_describe(T4CStatement.java:463)
    oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1126)
    oracle.jdbc.driver.OracleStatement.executeQuery(OracleStatement.java:1274)
    oracle_jdbc_driver_T4CStatement_Proxy.executeQuery()=====================================
    What could be the reason? Is there any other app server datasource related setting that needs to be done or is it some other issue - as I said 'testing the connection from EM console connects successfully'.
    Thanks,
    Rommel.

    The issue is resolved now.
    One of the queries used a db link that was missing on the new database and therefore the error from the java code.
    Since testing for connectivity using DS through EM console does not check for any db link (using the default query it executes) connectivity was successful.
    Thank a lot,
    Rommel.

  • 'Connection Description for Remote Database not found' Error

    Hi All,
    I have an interface that loads Oracle DB from an Oracle source(JD Edwards). It is mostly one to one mapping of the columns, and is utilizing LKM Oracle to Oracle(DBLink), IKM Oracle Incremental Update and CKM Oracle.
    I am getting an error when executing the interface which states 'Connection Description for Remote Database Not Found' at the 'Insert Flow into I$ table' step in the Operator logs.
    The below is the content of the error:
    2019 : 42000 : java.sql.SQLException: ORA-02019: connection description for remote database not found
    java.sql.SQLException: ORA-02019: connection description for remote database not found
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:125)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:316)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:282)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:639)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:185)
         at oracle.jdbc.driver.T4CPreparedStatement.execute_for_rows(T4CPreparedStatement.java:633)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1086)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:2984)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3057)
         at com.sunopsis.sql.SnpsQuery.executeUpdate(SnpsQuery.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execStdOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlI.treatTaskTrt(SnpSessTaskSqlI.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.j(e.java)
         at com.sunopsis.dwg.cmd.h.z(h.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)
    Please advice me on the correction.
    Many Thanks!

    Hi All,
    I am seeing things are working fine, when I am using LKM SQL to Oracle in combination with IKM Oracle Incremental Update. It is only in the case of using LKM Oracle to Oracle(DBLINK) in combination with IKM Oracle Incremental Update, that the above mentioned error is thrown.
    Please suggest on the resolution in using LKM Oracle to Oracle(DBLINK) with IKM Oracle Incremental Update...
    Thanks!

  • ORA-01878: specified field not found in datetime or interval

    I have TIME_SOLD field which is a date data type. WHen I run a simple query against this table with the where clause below, I get ORA-01878: specified field not found in datetime or interval. Please help?
    and to_char(from_tz(cast(time_sold as timestamp), 'Australia/Sydney') at time zone 'US/Pacific', 'yyyymmdd') >= '20091001'
    and to_char(from_tz(cast(time_sold as timestamp), 'Australia/Sydney') at time zone 'US/Pacific', 'yyyymmdd') < '20091101'

    just to give an exampe I've created a table called your_table with a date field (time_sold).
    I've inserted 100 random values plus this one: 20090329 02:30:00 (read it using the format yyyymmdd hh24:mi:ss).
    It's a non valid time in Rome because on March 29 we went to the DST so time skipped from 02.00 to 03.00.
    Here's my script's result:
    SQL> declare
      2    x varchar2(100);
      3    cursor c is
      4      select time_sold from your_table;
      5  begin
      6    for r in c loop
      7      begin
      8       x:= to_char(from_tz(cast(r.time_sold as timestamp), 'Europe/Rome') at time zone 'US/Pacific', 'yyyym
    mdd');
      9      exception
    10        when others then
    11           DBMS_OUTPUT.PUT_LINE(SQLCODE||' '||to_char(r.time_sold,'yyyymmdd hh24:mi:ss'));
    12      end;
    13    end loop;
    14  end;
    15  /
    -1878 20090329 02:30:00Max

  • RMAN-target database not found

    Hello All:
    we have rman config (0 level bkp) for our PROD backup, rman catalog is on a different server. running OK. heaving 0 level backup of our PROD.... no issue.
    Now we have one more PROD db implemented recently for payroll on seperate server, so we decided to have rman backup of this also.
    we set that rman script to here also and made the neccessary changes.
    It is heaving backup, archive backup ... no issue ...
    but it error while "RMAN Catalog resync"
    that part from script is
    ## RMAN Catalog resync ##
    rman log=/u01/bkp/logs/backup_resync.log << EOF
    connect catalog rman/rman@rman
    connect target /
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/u01/bkp/backup/ctrl_%F';
    resync catalog;
    EOF
    and the error on log file "backup_resync.log" getting:
    Recovery Manager: Release 11.1.0.6.0 - Production on Fri Aug 10 04:25:04 2012
    Copyright (c) 1982, 2007, Oracle. All rights reserved.
    RMAN>
    connected to recovery catalog database
    RMAN>
    connected to target database: ORCL (DBID=2588904899)
    RMAN>
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of configure command at 08/10/2012 04:25:29
    RMAN-06004: ORACLE error from recovery catalog database: RMAN-20001: target database not found in recovery catalog
    RMAN>
    Recovery Manager complete.
    plese suggest on this, i googled, saying to register the catalog, tried but no luck....
    thanks in ADV
    Edited by: DOA on 9 Aug, 2012 10:16 PM
    Edited by: DOA on 9 Aug, 2012 10:17 PM

    Hello vreddy,
    Thanks for the reply...
    I am bit new with the rman word....
    I tried command on server where catalog exist (stating: my PROD and catalog exist on different different server)
    (orcl is my PROD db name)
    rman target / catalog ORCL
    Recovery Manager: Release 10.2.0.1.0 - Production on Fri Aug 10 10:57:29 2012
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    connected to target database: RMAN (DBID=1583459273)
    recovery catalog database Password:
    asking for some password, which password here we need to supply ?
    for more clear picture I also execute command on catalog side:
    SQL> select name,DBID,RESETLOGS_TIME from rc_database order by 1;
    NAME DBID RESETLOGS
    PROD 4247251480 12-MAY-04
    RMAN 1583455429 02-JAN-09
    db ORCL is not there in the list....

  • Physical database not found

    Post Author: madan.76
    CA Forum: Data Connectivity and SQL
    Hi All,
    I'm facing this problem. When I run my Crystal Report in it give error "Physical database not found", but all database related settings are correct, I'm using Access 97 database.
    Anybody provide solution for this.
    Thanks
    Madan
    [email protected]

    My solution:
    Copy p2bbde.dll to windows dir, system and system32
    Ciao,
    Willy

  • Physical database not found error in Crystal Reports 8.5

    We have products in the field with Crystal Reports 8.5 runtime files that have stopped working and now give us an error that says. 'Physical database not found'. Started last July, 2009. We now know that this error now appears on several other sites. This used to work but doesn't anymore. Please provide the exact runtime file procedure so we can get these sites up and running again.
    Thanks,
    RMECHL

    Using Procmon (Process Monitor from sysinternals.com) I determined the problem was that a file had been removed somehow that was required. The file name was p2ssql.dll
    RMECHL

  • ORA-0209:Connection discription for remote database not found

    Please help me with this oracle error.
    I have create a DB link to connect to the Oracle database from a remote Oracle DB. I am able to query the select statement through DBLINK and i also created the Synonym for the same. But still iget the below error in the DB package when i am inserting one row into the same table for which i created a synonym with the DBLINK
    ORA-0209:Connection discription for remote database not found
    ORA-02063:preceding line from DBLINK
    Please help me if anyone can give me a appropriate answer.
    Thanks in advance for all those who try to help me

    Sorry for the Typo mistake ..
    The ORA error code is not ORA-0209 but it is ORA-02019

  • RMAN-20001: target database not found in recovery catalog

    I am practicing loss off all control files. I have rman catalog backups which are set to autobackup controlfile. So far I did this.
    RMAN> startup nomount;
    Oracle instance started
    Total System Global Area 209715200 bytes
    Fixed Size 1272864 bytes
    Variable Size 155190240 bytes
    Database Buffers 50331648 bytes
    Redo Buffers 2920448 bytes
    RMAN> restore controlfile from autobackup;
    Starting restore at 08-SEP-10
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=156 devtype=DISK
    recovery area destination: /u02/flash_recovery
    database name (or database unique name) used for search: TEST
    channel ORA_DISK_1: autobackup found in the recovery area
    channel ORA_DISK_1: autobackup found: /u02/flash_recovery/TEST/autobackup/2009_12_09/o1_mf_s_705171034_5l0kgv4o_.bkp
    channel ORA_DISK_1: control file restore from autobackup complete
    output filename=/u02/control_files/TEST/control02.ctl
    output filename=/u03/oradata/TEST/control03.ctl
    Finished restore at 08-SEP-10
    RMAN> alter database mount;
    database mounted
    released channel: ORA_DISK_1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of alter db command at 09/08/2010 14:54:50
    RMAN-06004: ORACLE error from recovery catalog database: RMAN-20001: target database not found in recovery catalog
    I am assuming this has something to do with DBID but ... I don't have it and I don't know how to find it.

    Hi BelMan,
    Here is output
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    56869 Full 11.20M DISK 00:00:00 08-SEP-10
    BP Key: 56871 Status: AVAILABLE Compressed: NO Tag: TAG20100908T135312
    Piece Name: /u01/oracle/product/10.2.0/db_1/dbs/cf_c-549414289-20100908-00
    Control File Included: Ckp SCN: 125665520 Ckp time: 08-SEP-10
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    56993 Full 11.20M DISK 00:00:00 08-SEP-10
    BP Key: 56995 Status: AVAILABLE Compressed: NO Tag: TAG20100908T142547
    Piece Name: /u01/oracle/product/10.2.0/db_1/dbs/cf_c-549414289-20100908-01
    Control File Included: Ckp SCN: 125668490 Ckp time: 08-SEP-10

  • Error - Launching ConsoleOne Domain Database Not found

    Normally working fine, just recently the gwia message is messing up preparing messages to go out. Tried to launch ConsoleOne and it says the Domain Database not found, click OK try again.... and I get ERROR OPENING DOMAIN DATABASE...
    I ran GWcheck on the Post office, and it ran ok...
    What next?

    usadavidh,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Specified workbook not found (Discoverer 4i with Ora Apps)

    I am using Discoverer 4i with Oracle 11i.
    When I try to open any workbook via any responsibility (of Oracle Apps) I get Error
    ‘Specified workbook not found: <workbook name>’
    When I click OK on error, all my work books are listed.
    I have made sure users and responsibility have security access for Business Area
    Also made sure the workbook is shared with users and responsibility
    Any idea how I get rid of this error.
    Thanks in advance for any help

    Hi,
    The Oracle Apps uses the workbook developer key to locate and open the workbook. The Oracle Apps function that opens the workbook contains the developer key in the parameters for the function. This must match the developer key for the workbook shown in the Discoverer Manager Workbook -> Properties -> Identifier.
    Hope that helps,
    Rod West

Maybe you are looking for

  • Nokia 5610 does not recognize memory card

    I have acquired a Nokia 1GB microSD memory card for Nokia 5610 d-1. But  the memory card is not recognized. In Nokia 6303 the same memory card is recognized. I have formatted them with this mobile phone. Nevertheless, the 5610 (v10.00) does not recog

  • ABAP Classical Report in background

    Hi, I have written a ABAP classical report, when i run in foreground the format of the report works fine. When i run the same report in background the format of the report is changing. I.e end of page triggers in between the page. I am dynamically ha

  • Lens correction on Sony A7s, LR 5.6

    I am using a Sony A7s and LR 5.6 on my Mac......I see from the Lens Correction box in the Development  module, that when I enable profile correction, click on Sony I only get the choice of one lens showing up (not one that I have either). Back in the

  • Feature request: Select emails by count-from-sender

    Please allow me to select emails by count? e.g. indexing all the senders and counting the emails received from each. Here's how that would help: When it comes to free up a few Gigs of space in disk and improve Mail's performance, selecting thousands

  • Numbers keeps auto-opening a file

    For some reason, Numbers 3.0.1 keeps on trying to open an Excel file from an email (and since there are unsupported features, we get the bouncing icon on the dock). Any ideas why Numbers keeps on trying to open the file even though we have closed it