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

Similar Messages

  • 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.

  • 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

  • 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???

  • ORA-12514: Message 12514 not found;  product=RDBMS80; facility=ORA

    Hi,
    I have installed 10g's OracleEXE version and Oracle forms 6i on my machine.
    I am able to log on trough oracle 10g without using tnsnames.ora or sid.
    But when I am trying to connect 10g database through command prompt by using
    sqlplus username/password@xe then it is showing me below mentioned error.
    ORA-12514: Message 12514 not found; product=RDBMS80; facility=ORA
    I have tried tnsping xe on command prompt it is taking only 30msec. But still I am getting this error.
    Could anybody please help me out of it.
    Thanks in advance.
    Chandrakant.

    Hi to all,
    Is any knowledgable person is available in this group who can help me out of this problem.
    I have done following things.
    1) Installed Oracle XE version.
    2) Installed Forms 6i
    I am able to connect OracleXE through sqlplus system/abcd command but not with system/abcd@XE i.e. (with SID).
    Hence I am not able to connect OracleXE through Oracle Forms.
    Checked with tnsping xe at Dos Prompt.
    Getting connected through 30 seconds.
    Listener is up & Running and it is in started mode.
    netstat command is showing me the port 1521 (as opened)
    But Still I am not able to connect Forms 6i with OracleXE version.
    Please suggest me what should I do.
    Chandrakant.

  • 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?

  • 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/

  • ERROR:ORA-12519: Message 12519 not found; product=RDBMS; facility=ORA

    Hi,
    Am on 11.5.10.2
    DB 9.0.2.0.6
    Multinode - node 1 - Apps
    node 2 DB
    we are upgrading our DB 926 to 1024.
    While applying INTEPO 4653225 for 11i .. worker fails with ERROR:ORA-12519: Message 12519 not found; product=RDBMS; facility=ORA
    I can ping DB .....
    sqlplus also working fine ..........
    Thanks

    Hi,
    What is the OS?
    Is this a RAC?
    Please post the complete error message from the worker log file.
    Since you can login using sqlplus and you can tnsping the database, please try to bounce the listener then restart the failed worker via adadmin and see if it works.
    Also, check the database log file for any details about the error.
    Thanks,
    Hussein

  • Hello, i need help i'm doing experiment on ilab i have managed to put my experiment on the platform but when i try to launch it fails with an error 404 that the page not found. any one with idea of what i should do to solve this problem. thank you

    hello, i need help i'm doing experiment on ilab i have managed to put my experiment on the platform but when i try to launch it fails with an error 404 that the page not found. any one with idea of what i should do to solve this problem. thank you

    hey Sally,
    Can you elaborate on the ilab and what you are trying to do? I have found this page to explain error 404, but I am not sure if it directly applies to  you
    http://digital.ni.com/public.nsf/allkb/D0998D3734926FA08625782300016E40?OpenDocument
    Regards,
    A. Zaatari
    National Instruments
    Applications Engineer

  • ORA-17612: Message 17612 not found; product=RDBMS; facility=ORA ; arguments

    Hi,
    OS : Sun OS 64-bit
    Database : 9.2.0.5
    I have copied the oracle from one server to another server and relinked the oracle software.
    The source server has the Veritas components installed.
    In the destination we don't want that.
    So after relinking the oracle Software.
    when trying to startup the database.
    It gives the following error.
    ORA-17612: Message 17612 not found; product=RDBMS; facility=ORA ; arguments: [2]
    There is no proper documentation for this error.
    the software is looking for the library.
    I want to this because instead of downloading and installing the relink make my work easy.

    Ya i have checked everything is correct.
    But this is due to that it is looking for the media management software.
    Veritas. i have even searched on google.
    http://seer.support.veritas.com/docs/250824.htm
    This exactly matches my case.
    now i dont want oracle to use that Veritas or Media Management library.

  • ORA-00002: Message 2 not found;  product=RDBMS; facility=ORA

    Hi All,
    I have setup DR , Continiously I m getting following error in production's alert Log
    LGWR: I/O error 2 archiving log 3 to 'EXLWFMDR'
    Wed May 14 17:00:24 2008
    Errors in file c:\oracle\admin\exlwfm\bdump\exlwfm_lgwr_1116.trc:
    ORA-00002: Message 2 not found; product=RDBMS; facility=ORA
    I have also monitor network its OK (Reply from IP ADD: bytes=32 time<1ms TTL=127
    Reply from IP ADD: bytes=32 time<1ms TTL=127
    Reply from IP ADD: bytes=32 time<1ms TTL=127
    Reply from IP ADD bytes=32 time<1ms TTL=127
    Reply from IP ADD: bytes=32 time<1ms TTL=127
    Reply from IP ADD: bytes=32 time<1ms TTL=127)
    Thanks
    Ashutosh

    OS? Database version? Could be bug 2327312, on metalink:
    LGWR: Error 2 Creating Archivelog File In The Primary Alert.Log In Maximum Performance Mode
    Doc ID: Note:220783.1
    Werner

  • ORA--0001: Message -1 not found;  product=RDBMS; facility=ORA

    Hi All,
    I am using pro*c to connect to DB. My application was working fine till today. All of a sudden without changing any application configuration I started getting error during connect.
    Statement executed
    EXEC SQL CONNECT :sqli_username IDENTIFIED BY :sqli_password USING :sqli_db_instance ;
    All Bind variable populated correctly still getting following error.
    ORA--0001: Message -1 not found; product=RDBMS; facility=ORA
    I tried to debug and search on internet for problem however as you can see sqlca.sqlcode is negative value -0001 which is not mapped to logical oracle error.
    I could see on oracle site
    sqlca.sqlcode <0 - Means that Oracle did not execute the statement because of a database, system, network, or application error. Such errors can be fatal. When they occur, the current transaction should, in most cases, be rolled back.
    But how will I understand what was exact reason for failure.
    Any help or direction is very much appreciated ..
    Thanks.

    You probably want to make sure your $ORACLE_HOME is set correctly.
    null

  • ORA-17627: ORA-12577: Message 12577 not found; product=RDBMS; facility=ORA

    Hi Guru's,
    During running Duplicate command from active database duplication. I am getting error as:-
    ORA-17627:ORA-12577: Message 12577 not found; product=RDBMS; facility=ORA
    Can anyone of you tell me what exactly the error as i googled about this error but not getting any satsifactory answer
    Ok After looking at the alert file i came to notice
    ORA-19502: write error on file "+DATA1/abc/controlfile/current.253u84989, block number 512 (block size=16384).

    vk82 wrote:
    Hi Guru's,
    During running Duplicate command from active database duplication. I am getting error as:-
    ORA-17627:ORA-12577: Message 12577 not found; product=RDBMS; facility=ORA
    Can anyone of you tell me what exactly the error as i googled about this error but not getting any satsifactory answer
    Ok After looking at the alert file i came to notice
    ORA-19502: write error on file "+DATA1/abc/controlfile/current.253u84989, block number 512 (block size=16384).
    The "message not found" error is almost invariably due to not having ORACLE_HOME properly set.  That error is actually a secondary error.  Some other error occurred, and when oracle tried to reported it, could not find the messages file that provides the text for all the error messages.  That message file is expected to be at a specific location relative to ORACLE_HOME.  So if ORACLE_HOME is not correct ... you get this problem.

  • I have a Apple ID, however when i am trying to login to App Store, i am getting a message "This Apple ID has not yet been used with the App Store"?

    Hello,
    I have a Apple ID, however when i am trying to login to App Store or iTunes, i am getting a message "This Apple ID has not yet been used with the App Store"?
    I am able to login to iCloud with my Apple ID
    Kindly Assist
    Regards
    Shuja

    If you have never used the Apple ID to make purchases from iTunes or the Mac App Store you need to follow the steps to create an account with that Apple ID.

  • I am not getting any sound with my apps, only itunes, any thoughts?

    I am not getting any sound with my apps, only itunes, any thoughts?

    Have you got notifications muted ? Only notifications (including games) get muted, so the iPod and Videos apps, and headphones, still get sound.
    Depending on what you've got Settings > General > Use Side Switch To set to (mute or rotation lock), then you can mute notifications by the switch on the right hand side of the iPad, or via the taskbar : double-click the home button; slide from the left; and it's the icon far left; press home again to exit the taskbar. The function that isn't on the side switch is set via the taskbar instead : http://support.apple.com/kb/HT4085

Maybe you are looking for

  • ORA-12712: new character set must be a superset of old character ...-

    Dear all , i have a problem with oracle database, server configuration oracle 10g, solaris 9, sparc processor 64 bit, i altered database character set to UTF8, whe i return database to old seeting ISO 8859-6 i got this error ORA-12712: new character

  • How to keep a "front panel" open during another sequence?

    Hello everybody, I'm new on the TestStand forum and I have a question for my project. I need to make a test sequence with several sub-steps: Barcode reading, Data reading, Data analysis etc... and all these steps in a "For" or "Do... while" loop unde

  • Need help with info about the possibility of altering images when saved in a different format

    I am very new to the design world.  I have a printing business and received and image to be printed in Adobe Acrobat (I think).  I needed to resize the image to be printed and took it into Photoshop CS6 where I cropped the edges.  I then resave it as

  • Error occurred during automatic upgrade of MDL file

    The MDL file is exported from 10.2, we were trying to imported it into 11.2 using OMBIMPORT, got following error message. MDL1323: Error occurred during automatic upgrade of MDL file </opt/etl/etl.mdl>. Detailed Error Message: Error: MDL1122: Import

  • Installing itunes on windows vista

    when i try to unistall itunes get the error message itunes could not be installed because visual basic script (vbscript) is not installed or has been disabled. make sure vbscript is installed, turn off script blocking in anti-virus and personal firew