Table or view not found

Hello,
Please help me, I´m doing a query over a database table and it gave me the next exception:
java.sql.SQLException: [POL-5130] table or view not found Excepción Interna: java.sql.SQLException: [POL-5130] table or view not found Código de Error: -5130<
I already tried the solucion suggested in the dev guide.

Hi Raj,
could you post the fulll Oracle error Message?
Also, read up on how to grant explicit priviliges to schemas on procedures/views and tables. This may be necessary in order for a dbms_job to function as expected.
http://download.oracle.com/docs/cd/E11882_01/server.112/e10897/users_secure.htm#CHDBDBGI
http://download.oracle.com/docs/cd/E11882_01/server.112/e17118/statements_9013.htm#SQLRF01603

Similar Messages

  • Table or View Not Found Problem

    Hi all,
    I am facing a strange problem where-in I am calling a query from a normal SQl window which works but the same in Procedure gives me an error.
    User A...This runs this statement
    Select * from B.emp which gives results. The same statement when I compile in a procedure it gives an error saying Table or View not Found.
    User A has a select on B.Emp where B is the owner of table Emp.
    I am not able to get to the solution of the same. Is it apossibility of a synonym conflict? Can someone help in what ways this error can come?
    Thanks and Regards,
    Kapil Uppal

    Hi,
    >>Well the error is Table Or View Does not exist
    Interesting, what version of Oracle are you using ? As you can see below, the stored procedure does not recognized the privilege that have been granted through a role.
    LEGATTI@ORACLE10> create user user1 identified by user1;
    User created.
    LEGATTI@ORACLE10> create user user2 identified by user2;
    User created.
    LEGATTI@ORACLE10> grant connect,resource to user1,user2;
    Grant succeeded.
    LEGATTI@ORACLE10> create table user1.emp (id number);
    Table created.
    LEGATTI@ORACLE10> create role user1_role_tables;
    Role created.
    LEGATTI@ORACLE10> grant user1_role_tables to user2;
    Grant succeeded.
    LEGATTI@ORACLE10> grant select on user1.emp to user1_role_tables;
    Grant succeeded.
    LEGATTI@ORACLE10> connect user2/user2
    Connected.
    USER2@ORACLE10> select count(*) from user1.emp;
      COUNT(*)
             0
    USER2@ORACLE10> create or replace procedure my_test_procedure as
      2  n_id number;
      3  begin
      4  select count(*) into n_id from user1.emp;
      5  end;
      6  /
    Warning: Procedure created with compilation errors.
    USER2@ORACLE10> show errors
    Errors for PROCEDURE MY_TEST_PROCEDURE:
    LINE/COL ERROR
    4/1      PL/SQL: SQL Statement ignored
    4/38 PL/SQL: ORA-01031: insufficient privilegesCheers

  • PL/SQL Exception for ORA-00942 - Table or view not found?

    Hey there!
    I want to create an exception my code runs into whenever it tries to select from a table that is not existent (or because of insufficient privileges).
    How can I get these ORA-00942 errors and place them into a exception? Except for WHEN OTHERS, that's not concrete enough.
    Regards,
    Thomas

    SQL> DECLARE
      2   table_not_found EXCEPTION;
      3   PRAGMA EXCEPTION_INIT(table_not_found, -942);
      4  BEGIN
      5   EXECUTE IMMEDIATE 'SELECT COUNT(*) FROM DUALX';
      6  EXCEPTION
      7   WHEN table_not_found
      8   THEN
      9      dbms_output.put_line('Table NOT found');
    10  END;
    11  /
    Table NOT found

  • CMR JDEV9032 TABLE VIEW NOT FOUND

    Hello,
    I'm breaking my head on the following:
    I created two entity beans (A and B). Both are CMP EJB's.
    In EJB terms : A has the field (id, name), B also.
    In the deployment descriptor I set a CMR relationship from A to many B's. This is just like the example of the EMP DEPT. The only difference is that there are no tables mappped yet of the EJB's A and B. They are to be generated at deployment time by the oc4j instance.
    This goes correctly. The tables are created (no intermediate tables are created), direct foreign keys (I'm using oc4j 904 pre to do this).
    So the idea is to work from EJB's and not to worry about the database.
    Since I'm using a CMR (so local interfaces are used), I created a Session Facade, so that I can try to create entity (read records) through a sample client (generated by JDeveloper 9032).
    I can create individual ejbs (==records), I see them in the database. But the moment I try to relate the objects (either by doing a B.setA(LocalA) on the B-entity or by adding to the collection A.getBees().add(LocalB)) it goes wrong.
    None of these work. I get a table or view not found exception. This is strange, since I can see at deployment that two tables are generated, exaclty like I expected. But setting the relationship is very hard !!!!!!
    My question is: who can help me on this ? I found some examples on otn.oracle.com, but they NEVER described the situation where you want to set the relationship.
    Now I'm working for a customer and the deadline is reaching. JDeveloper 9032 is the developerplatform. The embedded OC4J shipped with JDeveloper has a bug (Datasource not closed), that's why I'm using the OC4J 904 pre, since the bug is fixed in this release. Of course a Oracle 9i database is used.
    Hope to hear from you soon.

    Dear Debu,
    The only things I set in the orion-ejb-jar.xml is that datasource name and the table name. I can create instances of the A and B EJB's. Setting the relation between A and B seems to result in the message "Table or View not found".
    Furthermore If I try to do:
    (on Entity A).
    (This code is declared in a SessionFacade EJB which is used to set the relation();
    public void connect( Long idA, Long idB){
    LocalA a = LocalAHome.findByPrimaryKey(new Long(idA));
    LocalB b = LocalBHome.findByPrimaryKey(new Long(idB));
    // now b is filled.
    a.getBees().add(b); // Exception is thrown.
    The Exception is an Illegal State Exception.
    My Question is Why ?
    Regards,
    Rokesh Jankie

  • Table or view not exists error from procedure - occurs randomly

    I have a procedure used in a website, it works fine until recently we occationaly getting an error said Table or View not exists, the error will go away if refresh the page which will re-execute the procedure.
    This procedure uses an table object as temp table and just a select statement form several tables. The table object is used in other procedures as well. I can't find out what cause this error because it's not always repeatable and the error message didn't give out the exact table that cause the error.
    Any idea what might cause this or how to trace the reason that cause the error?
    We don't have a good DBA here so really need some help, any advice are welcome.
    Cheers

    I don't think it's possible that any previlege changes are made or the tables in used in the procedure are droped because after we run our db scripts to build the db, then we testing the website which can only execute procedures, and no procedures execute DDL script to make such changes.
    It's worth to mention that we have a Table Type called EntityIDTable() which is used in many of our other procedures, but I think table type is initialise as local variable in each procedure so shouldn't conflict to each other, am I right? Also, the same script are running several times a day to generate same db but with different schema names so we can test on different site templates. One change script did drop one of the table and recreate it, but it use the &DB_Schema_Name.Tablename to drop a table so shouldn't affect the table in other schema I think. (I enclosed the procedure below)
    Also, any event log in Oracle I can enabled and trace the problem to find out what table is not exists at that point that this problem occurs?
    Cheers
    Below is the sample code of the procedure:
    aEntityIDSet varchar2,
    aCount out int
    as
    L_KeyID Category.CategoryID%type:=null;
    l_strEntityIDSet varchar2(255);
    l_strPipeSepValsInput varchar2(255);
    l_UserEntityID varchar2(255);
    l_EndPointInput int;
    l_Strlength integer;
    l_UserKey NUMBER;
    l_UserOriginalKey NUMBER;
    l_RREntityData ENTITYIDTABLE:= ENTITYIDTABLE(); /*creating on object from a table type to store entity values in*/
    -- end of Local variables used for Category Security
    begin
    -- Category Security
    -- Split up the EntityIDSet
    l_strEntityIDSet:= aEntityIDSet;
    l_strPipeSepValsInput:= l_strEntityIDSet || '|';
    l_EndPointInput:= instr(l_strPipeSepValsInput,'|',1,1);
    l_UserEntityID:= SUBSTR(l_strPipeSepValsInput, 1, l_EndPointInput - 1);
    l_UserKey:= To_Number(l_UserEntityID);
    l_UserOriginalKey:=l_UserKey;
    l_strPipeSepValsInput:= SUBSTR(l_strPipeSepValsInput,l_EndPointInput+1);
    l_Strlength:=LENGTH(l_strPipeSepValsInput);
    While ( l_Strlength > 0) loop
    <<get_entityId>>
    l_EndPointInput:= instr(l_strPipeSepValsInput,'|',1,1);
    l_UserEntityID:= SUBSTR(l_strPipeSepValsInput, 1, l_EndPointInput - 1);
    l_UserKey:= To_Number(l_UserEntityID);
    l_RREntityData.extend;
    l_RREntityData(l_RREntityData.COUNT):= Entityidtype(l_UserKey);
    l_strPipeSepValsInput:= SUBSTR(l_strPipeSepValsInput,l_EndPointInput+1);
    l_Strlength:=LENGTH(l_strPipeSepValsInput);
    end loop get_entityId;
    -- the block above used in many other procedures to get the entityID
    select Count(Distinct ri.ID) into aCount From
    -- here joint to other 6 tables
    -- the inner join below use the ENTITYIDTABLE
    inner join
    (SELECT distinct KC.KnowledgeGeneID FROM Category Cat
         inner join KnowledgeGeneCategory KC on KC.CategoryID=Cat.CategoryID
         where EXISTS (SELECT EntityID FROM TABLE(cast (l_RREntityData as ENTITYIDTABLE)) ET
         INNER JOIN (SELECT EntityID, EntityTypeID, CategoryID FROM CategoryRowLevelSecurity CRLS
         WHERE CRLS.EntityTypeID=1) S ON ET.USERENTITYKEY=S.EntityID
         where S.CategoryID=Cat.CategoryID
         UNION
    SELECT EntityID FROM CategoryRowLevelSecurity CRLS
         WHERE EntityID=l_UserOriginalKey
         AND EntityTypeID=0
         AND CRLS.CategoryID=Cat.CategoryID)
         OR NOT EXISTS (SELECT CategoryID FROM CategoryRowLevelSecurity CRLS
         WHERE CRLS.CategoryID=Cat.CategoryID)
    ) CS ON CS.KnowledgeGeneID = k.KGID
    where ri.ProcessID = riPro.ProcessID)
    end QueryNotifications;

  • Cannot join tables .item dependency not found in EUL

    cannot join tables.item dependency "a04 currency->b27 exchange rate 1" not found in EUL
    I am not able to open a workbook in discoverer in user edition.
    It seems I unwittingly deleted a join in the end user layer. I have tried to redo the join but I have not been able to replicate the join required. Is there any way I can work around this join without having to scrap my workbook? Rebuilding the workbook took a long time.
    Any suggestions would dig me out of a deep hole

    Hey,
    I got this Error after our environment was cloned from APPS Production (PRD) instance to Development (DEV). I saved my workbooks that were 'under construction' as *.DIS files as local copies to the network.
    After the clone was finished I imported the latest Business Areas back onto DEV, but there was no way I could open my saved local workbooks due to the error "cannot join tables .item dependency not found in EUL".
    After some hours of rage, by accident we found out that one of our Functional Consultants was able to open these workbooks! It turned out that when I logged on to APPS under the user_name (from FND_USER) of this person I could indeed open the workbooks and save them to the database after which I could open them again with my own user.
    So -in this case- I solved the problem by using a different user to open the workbooks. But who knows next time...
    Good luck, you'll need it.

  • View not found

    Недавно у коллеги в окне со списком заявок перестали отображаться заявки со статусом Открыто, Закрыто и соответственно не отображаются Все. "часики" крутятся и ничего не отображается, кроме короткого появления сообщения "View not found". Обновленные и другие категории отображаются нормально. 
    Сегодня у меня в HelpDesk тоже перестали отображаться заявки, аналогично, как и у коллеги. Выяснил по логу, что мы одновременно в одну секунду одну и ту же заявку закрывали, как дубликат и присоединяли к другой. У коллеги пошли какие-то глюки и он удалил заявку. В итоге у меня теперь список заявок не грузится. 
    Как это может лечиться? Явно приложение сформировать список с определенным статусом не может.
    This topic first appeared in the Spiceworks Community

    yes correct.I am using UpdateOrder WS API.
    there is a "vf_demo" role defined in cartridge.however i am not able to see this role in OSM Admin Client.
    but i am able to place the order thorugh web client.
    how to embed "vf_demo" role in OSM Admin Client??
    Regards,
    Kaushal

  • Loaded dump from 12.5.4 to 15.7, Error 622 & Tables/Views not found

    Hi all,
    I am getting desperate trying to fix that issue. I had to import a dump from an ASE 12.5.4 into a new database on an ASE 15.7. I therefore enabled the compatibility mode server-wide and then proceeded to the load which seems to have performed correctly. The database seems well imported, and I can access most of the tables/views/procedures (from my C# application), but a procedure is giving me troubles.
    I am getting this error while executing a given procedure :
    Error: 622, Severity: 20, State: 1
    Opentable was passed a varno of 52. Object 'temp worktable' in database 'tempdb' already has that session descriptor in use. This occured while opening object id -1245236 in database id 2.
    I realised this was caused by a view which is used in this procedure but which is weird is that the error is not thrown when running the SQL code itself, out of the procedure context.
    I am using Toad for Sybase as a client, and realised I cannot access the data tab of the concerned view, Toad gives me the same error. So I cannot execute this view while it performs without any trouble on  the original server (production server which runs ASE 12.5.4).
    I also realised, when trying to execute some pieces of the query individually that I get warnings about unfound tables (and that I should use sp_help to fix the problem). Although, the tables actually exists and I can access their data.
    I have tried so many things and still cannot fix this problem. I've used 'upgrade_object', 'sp_recompile' on all tables, 'dbcc reindex' on all tables.
    Would you have any idea where the problem could come from? Thank you very much

    Thank you for your reply.
    Good to know that enabling compatibility mode before or after loading the load doesn't have any effect.
    I didn't drop/recreate all the SP and views but I can tell you I recreated a similar view and it causes the same issue.
    I had a look at your link yes. I have run 'dbcc upgrade_object' several times already, on the view and the procedures calling the view, and it won't solve anything.
    I've seen a similar post about the problem I have when executing the code itself of the view in a "normal" adhoc query (errors saying the tables are not found) : SAP Sybase Forums - ASE - Backup and Recovery - PRoblem after restore - Object does not exist.
    Could it be the same problem for me?
    Although I've tried splitting the SQL query and executing the parts individually and it works without any trouble. Problem is when the 2 parts of the view are put together. It may be something that was possible with ASE 12.5.4 but not with 15.7 and that compatiblity mode doesn't solve. My view consists of an union a two selects where both have left joins, case when then else, not in and a final group by (adding an order by doesn't help, as I tried).
    PS : I don't have access to the production server where the dump is actually from (but I could if it is really necessary)

  • Com.sap.sql.log.OpenSQLException: table or view not exists

    Hi!.
    I'm developing a Portal Component over NW EP 2004s (7.0) which access to SQL Server database. I have created three tables on the system db (EPD). Connection is Ok, over datasource object, but i can't make a SELECT operation to my new tables.
    Hovewer, making a SELECT operation over older system tables is OK.
    I have adjusted permissions on my new tables, similar to the older tables. The table's owner is the same too.
    The exception i get is:
    **Exception of type com.sap.sql.log.OpenSQLException caught: The SQL statement "SELECT * FROM "SAPEPDDB"."UME_EP_UNLOCKUSERS"" contains the semantics error[s]: - 1:24 - the table or view >>UME_EP_UNLOCKUSERS<< does not exist**
    [EXCEPTION]
    *com.sap.sql.log.OpenSQLException: The SQL statement "SELECT * FROM "SAPEPDDB"."UME_EP_UNLOCKUSERS"" contains the semantics error[s]: - 1:24 - the table or view >>UME_EP_UNLOCKUSERS<< does not exist*
    at com.sap.sql.jdbc.common.StatementAnalyzerImpl.check(StatementAnalyzerImpl.java:38)
    at com.sap.sql.jdbc.common.StatementAnalyzerImpl.preprepareStatement(StatementAnalyzerImpl.java:101)
    at com.sap.sql.jdbc.common.StatementAnalyzerImpl.preprepareStatement(StatementAnalyzerImpl.java:87)
    at com.sap.sql.jdbc.common.CommonStatementImpl.executeQuery(CommonStatementImpl.java:114)
    at com.sap.engine.services.dbpool.wrappers.StatementWrapper.executeQuery(StatementWrapper.java:172)
    at com.uralita.database.DbManager.executeQuery(DbManager.java:105)
    at com.uralita.ListaSistemas$ListaSistemasDynPage.getSystemsR3(ListaSistemas.java:184)
    at com.uralita.ListaSistemas$ListaSistemasDynPage.doInitialization(ListaSistemas.java:93)
    at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:105)
    at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:134)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.async.AsyncIncludeRunnable$1$DoDispatchRequest.run(AsyncIncludeRunnable.java:377)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sapportals.portal.prt.core.async.AsyncIncludeRunnable.run(AsyncIncludeRunnable.java:390)
    at com.sapportals.portal.prt.core.async.ThreadContextRunnable.run(ThreadContextRunnable.java:164)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:729)
    at java.lang.Thread.run(Thread.java:534)
    Caused by: com.sap.sql.sqlparser.CommonSQLParserException: - 1:24 - the table or view >>UME_EP_UNLOCKUSERS<< does not exist
    at com.sap.sql.sqlparser.CommonSQLStatement.checkSemantics(CommonSQLStatement.java:171)
    at com.sap.sql.jdbc.common.StatementAnalyzerImpl.check(StatementAnalyzerImpl.java:35)
    ... 19 more
    caused by
    com.sap.sql.sqlparser.CommonSQLParserException: - 1:24 - the table or view >>UME_EP_UNLOCKUSERS<< does not exist
    at com.sap.sql.sqlparser.CommonSQLStatement.checkSemantics(CommonSQLStatement.java:171)
    at com.sap.sql.jdbc.common.StatementAnalyzerImpl.check(StatementAnalyzerImpl.java:35)
    at com.sap.sql.jdbc.common.StatementAnalyzerImpl.preprepareStatement(StatementAnalyzerImpl.java:101)
    at com.sap.sql.jdbc.common.StatementAnalyzerImpl.preprepareStatement(StatementAnalyzerImpl.java:87)
    at com.sap.sql.jdbc.common.CommonStatementImpl.executeQuery(CommonStatementImpl.java:114)
    at com.sap.engine.services.dbpool.wrappers.StatementWrapper.executeQuery(StatementWrapper.java:172)
    at com.uralita.database.DbManager.executeQuery(DbManager.java:105)
    at com.uralita.ListaSistemas$ListaSistemasDynPage.getSystemsR3(ListaSistemas.java:184)
    at com.uralita.ListaSistemas$ListaSistemasDynPage.doInitialization(ListaSistemas.java:93)
    at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:105)
    at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:134)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.async.AsyncIncludeRunnable$1$DoDispatchRequest.run(AsyncIncludeRunnable.java:377)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sapportals.portal.prt.core.async.AsyncIncludeRunnable.run(AsyncIncludeRunnable.java:390)
    at com.sapportals.portal.prt.core.async.ThreadContextRunnable.run(ThreadContextRunnable.java:164)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:729)
    at java.lang.Thread.run(Thread.java:534)
    Someone has been getting this problem? Any idea?
    Thanks!

    I have tried that.
    [EXCEPTION]
    *com.sap.sql.log.OpenSQLException: The SQL statement "SELECT * FROM EPD.SAPEPDDB.UME_EP_SLD" contains the syntax error[s]: - Open SQL syntax error: table names must not specify a catalog name (delete "EPD". before "SAPEPDDB"."UME_EP_SLD")*
    Database name must be Ok, because i can access to other tables which are in the same DB...
    Thanks for your help

  • SAP database tables - Column statistics not found for table in DB02 - During import, inconsistent tables were found - Some open conversion requests still exist in the ABAP dictionary.

    Hi Experts,
    I'm implementing SAP note 1990492 which requires manual implementation. Implementation includes modifying standard tables (i.e. append
    the structure FIEU_S_APP_H to table FIEUD_FIDOC_H). After this I've adjusted the table in SE14 (Database Utility). I've done checks in SE14 and it shows the table is consistent.
    But during DB02 -> Space folder -> Single table analysis -> Input table name -> Indexes tab -> Upon clicking statistics, there is a warning "Column statistics not found for table".
    Our basis team is implementing an Add-On in the development system related to RWD Context Sensitive Help. They cannot proceed due to the following inconsistencies found in the table.
    Screenshot error from the activity:
    Screenshot from DB02:
    I'm an ABAP developer and have no other ideas on what to do. Thanks in Advanced.

    Hi All,
    We were able to fix the issue through the following:
    1. Call transaction
    SE14.
    2. Enter the name of
    the table and choose "Edit".
    3. Choose
    "Indexes".
    4. Select the index
    and choose "Choose (F2)".
    5. If you choose
    "Activate and adjust", the system creates the index again and it is
    consistent.
    6. Check the object
    log of this activation.
    7. If an error
    occurs, eliminate the cause and reactivate the index.

  • CRYSTAL REPORT VIEWER NOT FOUND IN VC++

    Hi All,
    I am migrating our appn VC++ 6.0 code to VS 2010(MFC code compiled in VS2010). I could able to compile all the code in VS 2010 and i am created vb.net report application using crystalreport viewer, it working fine, afterthat i am converted vb.net code  to C#.
    My questions are,
    1) how to add crystalreportviewer control in VC++ (searched not found) or alternative any control is available in vc++ using same c# code?
    2) if its possible , to load rpt files without viewer control ? ,if yes, please provide me sample code.
    Regards,
    Esha Abdullah M

    I found one, since you never looked, to get you going. It's written in C++, just change the assemblies to CR for VS 2010
    General
    Crystal Reports .NET - All Sample Applications
    This set includes the following samples:
        cr_net_sdk_tutorial_samples_en.zip
        crsdk_net_samples_12.zip
        NET-CPP2005_CRNET_CR115_Change_Record-Selection-Formula.zip
    #using <C:\Program Files (x86)\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\win32_x86\dotnet\CrystalDecisions.CrystalReports.Engine.dll>
    #using <C:\Program Files (x86)\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\win32_x86\dotnet\CrystalDecisions.Shared.dll>
    #using <C:\Program Files (x86)\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\win32_x86\dotnet\CrystalDecisions.Windows.Forms.dll>
    And comment out the Page event, seems they don't work in 2010, we changed the event handler:
    //               this->crViewer->ClickPage += new CrystalDecisions::Windows::Forms::PageMouseEventHandler (this,&ViewForm::crystalReportViewer1_ClickPage);
    //               this->crViewer->DoubleClickPage += new CrystalDecisions::Windows::Forms::PageMouseEventHandler (this,&ViewForm::crystalReportViewer1_ClickPage);
    Don
    Edited by: Don Williams on Jul 13, 2011 9:05 AM

  • Can't join tables.query dependency not found "" in EUL

    hi ALL,
    i created one report in disco 3.1.38 and its' running fine but after storing it in database and then again trying to open it from database it gives me error "can't join tables."name of query folder" dependency not found "" in EUL"
    if any one has come across such problem and has solution for it ..please reply back.
    thanks in anticipation
    manish

    Manish,
    I have not run into this error before and maybe one of the oracle consultants could answer this better. But I here it goes. I would first try a refresh on the folders that the report in question is using. Is it possible that the under lining tables have changed? Do you have another copy of the same report outside of the database and does it still work?
    Christopher

  • Remove Table b/c not found on Developer 9 Startup...

    Post Author: Stephen_Piland
    CA Forum: General
    We have one person using Developer 9 that opens a RPT and the first time he gets the 'Table Not Found; Do you want to remove' message.  He clicks Yes, closes the RPT w/o saving.  He opens it up again and it works fine.  Any ideas?  Thanks!!

    Hemant,
    Actual sequence is 8903, but I had edited it to 1234 on the first post and missed the edit on the last post.
    List of Archived Log Copies
    Key Thrd Seq S Low Time Name
    10995 1 10601 A 07-JUL-11 /u10/oradata/xxxxxx/arch/xxxxxx_10601.arc
    10996 1 10602 A 07-JUL-11 /u10/oradata/xxxxxx/arch/xxxxxx_10602.arc
    10997 1 10603 A 07-JUL-11 /u10/oradata/xxxxxx/arch/xxxxxx_10603.arc
    10998 1 10604 A 07-JUL-11 /u10/oradata/xxxxxx/arch/xxxxxx_10604.arc
    10999 1 10605 A 07-JUL-11 /u10/oradata/xxxxxx/arch/xxxxxx_10605.arc
    The 8903 archived log file went missing a month prior to my arrival at this shop. And, the alert logs are only being kept for a week. Archive log files are usually deleted thru RMAN scripting, but I suspect one or more may have been deleted at the operating system interface. IDK.
    I will have Oracle Support review your suggestions before taking any action in Oracle 9i.
    Appreciate the advice.
    Thanks to all, Bob

  • Content Viewer not found

    When I try to preview a folio on the desktop I get the message: An error has occurred while generating folio preview. Could not find the Adobe® Content Viewer.
    I unistalled Air and installed it again. Everything is up to date (worked before the update). Where is the Content Viewer?

    Help!!
    I am getting the "An error has occurred while generating folio preview. Could not find the Adobe® Content Viewer." when I try to preview a Folio from the tutorial detailed on:
    http://help.adobe.com/en_US/digitalpubsuite/tutorials/WS67cb9e293e2f1f60-21ba9a4512e5e5e0b 8d-7ffd.html
    I am on a Mac running OS X 10.8.2 (12C60) Fully Patched and up to date and am using the Creative Cloud subscription with everything installed by the Adobe Application Manager.
    Have unistalled InDesign CS6 and reinstalled using AAM then reinstalled DPS tools using Help>Updates no reported problems during the process.
    Am NOT seeing Adobe Content Viewer in Applications and I have looked in the directory you quote above:
    3) If it isn't installed try installing it from /Library/Application Support/Adobe/Installers/AdobeDigitalPublishingCS6/ContentViewer/Adob eContentViewer.air
    This I find most curious - that directory does NOT exist. I have searched the machine for the file 'Adob eContentViewer.air' with and without the space in Adobe and nothing is found.
    Fairly clear that the Content Viewer is NOT installed. Also, not sure if this is relelvant at the moment but I am not seeing an option to preview on my iPad even though it is connected and I have installed the content viewer app on the device.
    What next please?
    TIA Julian
    EDIT:
    This is rather silly but I looked to see where the installer logs are ready if you asked for them and following the instructions on the page pointed to above  the Air Framework directory doesn't exist either. BUT I found what looks like the Air Framework files under Applications>Adobe Flash CS6 :

  • Table maintenance view not saving changes

    Hi experts
      I have created a Z table with corresponding maintenance view (with transaction). Also, there is a Z program to insert records into the table from xls file.
      When accesing the maintenance view, I can add and remove entries, but the problem is:
           when I update a record, if the records has been created using the maintenance view, then changes are saved to database, but if I try to modify a record added by using the Z program, none of the modifications are saved to DB.
      I have re-created maintenance view, and table properties (delivery class A, display/maintenance allowed ...) seem to be OK.
    Can someone provide some help with this?.
    Many thanks in advance for your help.
    Best  regards,
    Carlos.

    HI
      Thanks for your answer, but didn't work.
      Below my program (
      CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
        EXPORTING
          filename                = p_fin
          i_begin_col             = 1
          i_begin_row             = 2
          i_end_col               = 9
          i_end_row               = 9999
        TABLES
          intern                  = gt_fichero
        EXCEPTIONS
          inconsistent_parameters = 1
          upload_ole              = 2
          OTHERS                  = 3.
      LOOP AT gt_fichero INTO gs_fichero.
        CASE gs_fichero-col.
          WHEN 1. "Proyecto
            "Validaciones
            gs_unidades-proyecto = gs_fichero-value.
          WHEN 2. "Tipología
            "Validaciones
            gs_unidades-tipologia = gs_fichero-value.
          WHEN 3. "Alias
            "Validaciones
            gs_unidades-identificador = gs_fichero-value.
          WHEN 4. "Superficie
            "Validaciones
            TRANSLATE gs_fichero-value USING ',.'.
            gs_unidades-superficie = gs_fichero-value.
          WHEN 5. "Estado
            "Validaciones
            gs_unidades-estado = gs_fichero-value.
          WHEN 6. "Entrega
            "Validaciones
            gs_unidades-entrega = gs_fichero-value.
          WHEN 7. "PVPCoste
            "Validaciones
            TRANSLATE gs_fichero-value USING ',.'.
            gs_unidades-pvpcoste = gs_fichero-value.
            "Se añade el registro a la tabla de datos maestros
            INSERT ztt_fi_unidades FROM gs_unidades.
            CLEAR gs_unidades.
            IF sy-subrc EQ 0.
              gv_total_correctos = gv_total_correctos + 1.
            ELSE.
              gv_total_erroneos = gv_total_erroneos + 1.
            ENDIF.
            gv_total_registros = gv_total_registros + 1.
          WHEN OTHERS.
        ENDCASE.
      ENDLOOP.

Maybe you are looking for

  • Not able to see websites in Safari 6.0 after upgrading to Mountain Lion

    This weekend I updated to Mountain Lion from Snow Leapard. After the installation my machine rebooted. Once the machine reboot, I did another system update and the machine updated my iWorks and iPhoto apps. Once the machine updated the applications.

  • Error when creating Recordset using CF and Postgres

    I'm a complete newbie when it comes to databases and development so go easy on me. I have created a simple database with a schema (ABC) and 2 tables (_Address, _Member) in Postgres 9.0.  I have installed CF 9 in development and am creating a new appl

  • Ipod in washer....

    After my 4g ipod went through the washing machine I did not plug it in or charge it I opened her up and let her dry (waranty over by 1 year) I left it open for about 2 days, put it back together and it worked. It now functions perfect other than when

  • Issues regarding Smart Card login inside domain and on SmartPhones

    Hi i am planning to implemnt at my domain login ONLY with smartcard i saw i have some option how to do it , one with GPO that covers all the computers (or some computers with defined groups) or i can check the "smart card is  required ...." this coul

  • Super User Profile for Bex Query Designer

    Hi There, What is the profile that will allow a user to create local queries, copy an existing (locked transported query), and change local queries - when the system is locked for change.  We are using SAP NetWeaver BI 7.0x Regards Fiona