InfoView - Error in File ...The table could not be found

When I run the a report out of Crystal Reports 2008 Developer using a 32 bit ODBC data source Microsoft Visual FOxPro Driver, the report runs fine.   All of my reports run fine in the Crystal Developer
But when I run the same report in Java SAP BusinessObjects InfoView Enterprixe XI, the same report would get an error:  The Table could not be found.   Other errors I would get:  Encapsulating page failed.  None of the reports work in InfoView, but they would work in the Crystal Developer.
Our environment is Windows Server 2008 R2 on a 64-bit Dell PowerEdge Server.

Hello,
If you create the System DSN on the Server and test the connection does it work? If it does then BOE either can't find the DBF file or it doesn't have access to the folder.
Check the permissions on the folder where the database files reside, if they are not local then map the driver where they do exist.
Don

Similar Messages

  • Error in File ****.rpt: The table could not be found in

    Hi ,
    I have a Crystal Report which uses a stored procedure to get it's data.
    The stored procedure has no parameters but it is pretty complex and gives a resultset in the end with a select statement.
    I designed the report in CR 11.5.12.1838.
    The report works perfect in crystal reports designer.
    Unfortunately I am getting an error in Central Management Concsole and InfoView
    The error is:
    Error in File ****.rpt: The table could not be found.
    I am using ODBC connection and I even used to sa credentials to run the report in CMC but had no luck.
    One thing I should mention that the stored procedure name as ;1 in the end.
    I appreciate if you could help me with this report
    Thanks

    The  SQL profiler RPC completed shows:
    exec sp_tables N'My[_]Procedure [_]Name[_]Has[_]Underscores,N'%',NULL,NULL
    and it's variations. Nothing else and that returns no result.
    My procedure name has underscores, I will get rid of that.
    I will recreate my Stored procedure without underscore or any special characters and let you know about the result
    Umit

  • Failed to read data from report file Reason: The table could not be found.

    BO Enterprise XI R2, cannot publish crystal reports using the publishing wizard.
    Failed to read data from report file Reason: The table could not be found.
    Any ideas to get around this would really help out.
    Regards

    Connection used Views, ODBC System DSN is setup properly.
    Approach for import from business view manager and import wizard.  both methods failed to import the Business View and underlying reports.
    I figure I may have imported the Business View wrong? From Business View Manager I exported from my dev server then imported to prod server.
    Apparently I learned exporting my business view also includes the Data Connections that the Business Views are dependent upon.
    So which ever folder you specify it copies it there. Originally the all Data Connections Resides on the root folder. To return it to the original location. I deleted what I had exported. Exported this time to the root folder, then only deleted the business views, foundation, elements. Then exported again to the folder where I intended then only deleted the Data Connection.
    Makes any sense? So I then had to re point the business views and all the dependent objects to the data connection that resides in the root folder.
    I tested the connection, it works fine. I properly updated my crystal reports to the business view in production. Did a sample extract it works as expected.
    However when i try to publish, either from Crystal or Publish wizard i get the same error?
    As a work around i am thinking, after updating the business view in the crystal reports, shall i re map the fields?? or reexport the business views again?
    Any help will be surely appreciated.

  • RAS Error  - The table could not be found.

    Hi,
      Bo version : XI2 SP2
      BO SDK : RAS
      I am getting following error while setting table location for the report going against Sybase (ODBC CR driver 5.1 wired protocol) database report.
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException: The table 'CASH' could not be found.
    Error in File C:\WINDOWS\TEMP\{6F59C5DB-DB01-4905-BFE6-5A302D2A9283}.rpt:
    The table could not be found.---- Error code:-2147482939 Error code name:failed
         at com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException.throwReportSDKServerException(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.s.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.cf.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.z.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ak.if(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ad.int(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.bk.for(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.v.a(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.v.if(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.DatabaseController.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.DatabaseController.setTableLocation(Unknown Source)
    what all properties needs to be set for Logon and also Location specific, any sample code for the RAS + ODBC + SYBASE will be highly appreciated.
    code giving error
                   // DatabaseController databaseController = reportClientDoc.getDatabaseController();
                   Tables tables = reportClientDoc.getDatabaseController().getDatabase().getTables();
                   ITable newTable = null;
                   for (Object object : tables) {
                        Table table = (Table) object;
                        newTable = (Table) table.clone(true);
                        log.info("Table Name " + table.getName());
                        IConnectionInfo connectionInfo = table.getConnectionInfo();
                        com.crystaldecisions.sdk.occa.report.lib.PropertyBag propertyBag = connectionInfo.getAttributes();
                        log.info("propertyBag.size >> " + propertyBag.size());
                        databaseName = (String) propertyBag.get(DB_NAME);
                        dsnName = (String) propertyBag.get(DSN);
                        Set<Object> set = propertyBag.keySet();
                        for (Object key : set) {
                             log.info("Key >> " + key);
                             log.info(" === Value >> " + propertyBag.get(key));
                        log.info("----
                        // newTable.setQualifiedName(table.getAlias());
                        // Change connection information properties
                        connectionInfo = newTable.getConnectionInfo();
                        // Set new table logon properties
                        // 1. Set the DSN
                        // 2. Set the Data Source (Database)
                        PropertyBag newPropertyBag = (PropertyBag) propertyBag.clone(true);
                        // Set new table logon properties (the DSN and the data source)
                        PropertyBag logonPb = new PropertyBag();
                        //logonPb.putStringValue("DSN", dsnName);
                        logonPb.put("Database Type", "ODBC (RDO)");
                        logonPb.put("Data Source Name", dsnName);
                        logonPb.put("DSN", dsnName);
                        logonPb.putStringValue("Database", databaseName);
                        logonPb.putBooleanValue("UseDSNProperties", false);
                        String dataSource = "";
                        DatabaseInfoVO databaseInfoVO = null;
                        if (StringUtils.indexOf(dsnName, "XXXX") != -1) {
                             dataSource = "EPAM-" + databaseName;
                             databaseInfoVO = this.getDatabaseInfoMap().get(dataSource.toUpperCase());
                        } else if (StringUtils.indexOf(dsnName, "YYYY") != -1) {
                             dataSource = "EIMCO-" + databaseName;
                             databaseInfoVO = this.getDatabaseInfoMap().get(dataSource.toUpperCase());
                        } else if (StringUtils.indexOf(dsnName, "ZZZZ") != -1) {
                             dataSource = "CRD-" + databaseName;
                             databaseInfoVO = this.getDatabaseInfoMap().get(dataSource.toUpperCase());
                        } else if (StringUtils.indexOf(dsnName, "WWWW") != -1) {
                             dataSource = "AA-" + databaseName;
                             databaseInfoVO = this.getDatabaseInfoMap().get(dataSource.toUpperCase());
                        log.info("databaseInfoVO >>" + databaseInfoVO);
                        // Overwrite any existing properties with updated values
                        newPropertyBag.put(PropertyBagHelper.CONNINFO_CRQE_LOGONPROPERTIES, logonPb);
                        newPropertyBag.putStringValue(PropertyBagHelper.CONNINFO_CRQE_SERVERDESCRIPTION, dsnName);
                        newPropertyBag.putStringValue(PropertyBagHelper.CONNINFO_CRQE_DATABASENAME, databaseName);
                        newPropertyBag.putStringValue(PropertyBagHelper.CONNINFO_DATABASE_DLL, "crdb_odbc.dll");
                        newPropertyBag.putBooleanValue(PropertyBagHelper.CONNINFO_CRQE_SQLDB, true);
                        newPropertyBag.putBooleanValue(PropertyBagHelper.CONNINFO_SSO_ENABLED, false);
                        set = newPropertyBag.keySet();
                        for (Object key : set) {
                             log.info("Key2 >> " + key);
                             log.info("Value2 >> " + newPropertyBag.get(key));
                        connectionInfo.setAttributes(newPropertyBag);
                        connectionInfo.setUserName(databaseInfoVO.getUserName());
                        connectionInfo.setPassword(EZSuiteEncodeUtil.decrypt(databaseInfoVO.getPassword()));
                        connectionInfo.setKind(ConnectionInfoKind.CRQE);
                        newTable.setConnectionInfo(connectionInfo);
                        newTable.setName(table.getName());
                        newTable.setAlias(table.getAlias());
                        newTable.setQualifiedName(table.getQualifiedName());
                        // Update the table information
                        reportClientDoc.getDatabaseController().setTableLocation(table, newTable);
    Thanks,
    Rupesh
    Edited by: Rupesh Raut on Oct 28, 2008 8:45 PM
    Edited by: Rupesh Raut on Oct 28, 2008 8:46 PM

    Hi,
    This error message appears when the user does not have sufficient rights to the business view on which the report is based.
    To resolve this error message, open the Business View Manager and verify that the user's rights are set up correctly.
    To view a report based on a business view, the user or the group to which the user belongs, must have 'View' rights to the business view. Also, verify that none of the groups, including the Everyone group, to which the user belongs, has been explicitly denied 'View' rights.
    If this does'nt help try to update database driver.
    Make the copy of database and save it with different name ( without underscore) and point the crystal report to it.
    Regards,
    Shweta

  • Crystal report error (The table '' could not be found)

    Dear Expert,
    As I know, the end user who don't want to edit the crystal report design no need to buy crystal report,right?
    Using the 'Crystal reports for SAP B1', they already view the report.
    But, how about, if I had created one crystal report, and then I want to distribute to end user. When I load the report on user machine that dont have crystal report, the system shown an error (The table '' could not be found).
    I think, maybe because of the database location. When I create the report, of course I made connection to my machine as a source of database location. But, how i'm going to change the database location to user machine?
    Is it when we login into SAP, did SAP auto detect the new location source? And will auto create connection to the crystal report?
    Thanks in advance for any help.

    Hi ,
    We do not create the database connection for the end user. the end user must have the same database connection as it is set up on your machine. The report is looking for the same connection, with the same access into the database.
    Best regards,
    Jadie

  • The table ' ' could not be found

    Hello everyone. I just created a custom report for Raiser's Edge using crystal reports and when trying to run the report for the first time I am getting the error message "The table ' ' could not be found". I created an export in Raiser's Edge in MDB format, brought the file into Crystal Reports, created my report, uploaded the Crystal Report back into Raiser's Edge, and tried to run it for the first time. Since creating the export to bring into Crystal Reports, I have not made a single change in the export. Any ideas as to what might be causing this issue?

    Hi,
    Please advice versions of B1 and crystal report.
    Thanks & Regards,
    Nagarajan

  • Error message: Table could not be found when opening reports with InfoView or CMC

    Post Author: Giovanni
    CA Forum: Authentication
    Hi All,
    I have Crystal Reports Server XI R2 installed on a server and the database folder (foxpro) is located on a different server. Crystal is connected to the database using an ODBC connection (UNC path).
    When I try to preview a report in Infoview or CMC I get the following error: "There was an error retrieving data from the server: The table 'dp' could not be found. Error in File C:\WINDOWS\TEMP\{BC665D6D-95DE-426B-A7A2-EBF9D23F42F4}.rpt: The table could not be found."
    dp is the name of one of our tables.
    If I publish a report that uses sql database or a foxpro db that is located on the same server as Crystal Server I donu2019t receive any error message..
    Please help if you can and thanks in advance.
    Giovanni

    Post Author: colin mackenzie
    CA Forum: Authentication
    Hi Giovanni.
    This post of yours is going on 2 weeks old.
    Have you solved your problem?

  • Error in file : table could not be found!

    I'm getting the following error on a scheduled report in production infoview.
    Error in File C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\Data\procSched\xxx-crystal-01.reportjobserver\~tmp17605bb388845935.rpt: The table could not be found.
    However the same report runs in local CR and infoview perfectly.
    Any help is appreciated.
    Thanks,
    Rams.

    Hi Ramesh,
    you have to Login into the SAP Service Marketplace at http://service.sap.com. But you need a S-User to do so.
    You can request your S-User on the top right of the Website.
    Regards
    -Seb.

  • Error when launching Crystal XIR2 report ..."Table could not be found."

    We have a customer that sees an error when launching any report in InfoView for Crystal Server XIR2:
    Description: Error in File E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\Data\slvnsb41.pageserver\slvnsb41.pageserver\child.2\temp\procReportTemp\mgrTemp\ps_13ec5b68e6bfbc0.rpt: The table could not be found.
    These steps have been taken:
    1) The Crystal Server Business View install and BIAR file imports are successful.
    2) Database connection has been configured and tested.
    3) All the tables are browseable in the Business View Manager and contain data.
    4) All the required tables exist in the database.
    Options or suggestions anyone?

    Can someone tell me how to open this as a SUPPORT CASE that someone will actually help solve? 
    Sorry to say but I don't find these forums of much use.

  • Crystal Report Windows Forms Viewer problems - table could not be found

    Hi,
    I installed Crystal Report Viewer in SAP Business One 2007. All the while, I can run the reports without any problem. but when I loaded some of the new report, it gives me the following error message:
    the caption says: "Crystal Reports Windows Forms Viewer"
    the message says: "The table 'paymentVoucher' could not be found.
    Error in file C:\...paymentVoucher.rpt. The table could not be found."
    By the way, I can run the report in another workstation.
    Any help or ideas of why this is happening or how to solve this will be greatly appreciated.
    Thanks in advance.

    The report is not created by me. I just help others to transfer the report from one workstation to another workstation. PaymentVoucher is a view in the database and it is being put at a workstation that can be shared by everyone.
    I've go through other forums and found out that it might be permission issues and now managed to solve the problem already.
    Thanks everyone for the advice.

  • Recently bought  a new computer and all my music appears in iTunes as well as on my computer in a saved folder. When I try to play the music in iTunes I get an error that reads"the song could not be used because the original file could not be found."

    Recently bought  a new computer and all my music appears in iTunes as well as on my computer in a saved folder. When I try to play the music in iTunes I get an error that reads"the song could not be used because the original file could not be found. Would you like to locate it?" Hope you can help me solve this issue.
    Thanks,
    Shellyboo

    This happens if the file is no longer where iTunes expects to find it. Possible causes are that you or some third party tool has moved, renamed or deleted the file, or that the drive it lives on has had a change of drive letter. It is also possible that iTunes has changed from expecting the files to be in the pre-iTunes 9 layout to post-iTunes 9 layout, or vice-versa, and so is looking in slightly the wrong place.
    Select a track with an exclamation mark, use Ctrl-I to get info, then cancel when asked to try to locate the track. Look on the summary tab for the location that iTunes thinks the file should be. Now take a look around your hard drive(s). Hopefully you can locate the track in question. If a section of your library has simply been moved, or a drive letter has changed, it should be possible to reverse the actions.
    Alternatively, as long as you can find a location holding the missing files, then you should be able to use my FindTracks script to reconnect them to iTunes .
    tt2

  • I have a new computer that downloaded all of my playlist. but i cannot play all songs. i get a error that say "the song could not be used because the original file could not be found. would you like to locate it? but it does not help to resolve.

    i installed itunes to my new computer and transfered all my playlist from the older computer. the software came with the new computer hp link up. the problem
    comes in where i want to play a certain song on a playlist and this error pops up "the song could not be used because the original file could not be found.
    would you like to locate it? which is of no help.
    is there a solution to this problem?

    The file path for these songs IS NOT correct per your iTunes Library file. 
    See: http://dougscripts.com/itunes/scripts/ss.php?sp=listmias  for an Applescript to locate these files for re-adding.

  • Error message on boot up: The file could not start C:\Windows\SysWOW64\vidperf.dll. The path could not be found?

    C:\Windows\SysWOW64\vidperf.dll  The path could not be found? What does this mean? How do I re-install this packet and eliminate this error message?
    Dell Laptop inspiron 1525 with Windows 7 Premium with open rights.

    P
    Just to eliminate the possibility please run Malwarebytes
    Please download the free version of Malwarebytes.
    Update it immediately.
    Do a full system scan
    Let us know the results at the end.
    http://www.malwarebytes.org/products
    Wanikiya and Dyami--Team Zigzag

  • I have an apple 3g, tried to update it to 4.2, but it wasnt successful, then they asked me to restore it .. to which im getting an error message of "the iphone could not be restored an unknown error has occured (error 1015), any solutions?

    i have an apple 3g, tried to upgrade it to a 4.2 version, (previously it was 4.1). it wasnt successful, the computer asked us to restore it to the version which was last operational, and while restoring an error message appeared "the iphone could not be restored, an unknown error occured

    "This error is caused by attempts to downgrade the iPhone, iPad, or iPod touch's software. This can occur when you attempt to restore using an older .ipsw file. Downgrading to a previous version is not supported. To resolve this issue, attempt to restore with the latest iPhone, iPad, or iPod touch software available from Apple."
    Taken directly from this article http://support.apple.com/kb/TS1275.
    Plug your iPhone into iTunes and update it to the latest supported version, which is 4.2.1.
    - Greg

  • Error -2003: a data handler needed by the movie could not be found

    Hello.
    I just purchased QuickTime Pro and the MPEG-2 add-on for it, for the single purpose of transcoding some MPEG-2 recordings to H.264. However, when I try to open any of my MPEG-2 files in Quicktime, I get the message: "error -2003: a data handler needed by the movie could not be found (my-filename.mpg)"
    I can play these files in a number of different free players--VLC, Mplayer, Windows Media Player, RealPlayer... but not in the player I paid $50 for.
    Can someone please help me?

    That doesn't really help. Besides, I haven't even got to the point where I'm trying to export. I get this error message when I try to open the file. I can't even play back the clip.
    And the MPEG-2 page clearly states: "The QuickTime MPEG-2 Playback Component provides QuickTime users with the ability to import and play back MPEG-2 content, including both multiplexed (a.k.a. muxed, where the audio and video tracks are interleaved together into one track) and non-multiplexed (a.k.a. elementary) streams."
    Also, Streamclip crashes when I try to load my MPEG-2 clips, so that's not going to work (and even if it did, I am trying to find a simple way to take the HDTV content I've recorded off the air and get it onto my AppleTV--I want fewer steps, not more).
    Looks like I'll have to waste some time calling customer service to get a refund, since there's no way to do this via the website.

Maybe you are looking for

  • MP3 files won't play in iTunes (Vista), but will play in WMP/iTunes (Mac)

    I have a strange problem that's starting to get incredibly frustrating! Have a wonderful Mac (powerbook g4 1.5 ghz), got a new PC recently, running Vista and iTunes 7.5.0.20, and transferred my iTunes library over. I've found that a significant numbe

  • Unable to close Goods Receipt PO with foreign currency

    hi all, When we tried to close Goods receipt PO done in June-08 using Euro currency(Data-->Close) System is throwing error message "No matching records found  'G/L Accounts' (OACT) (ODBC -2028)  [Message 131-183]" What might be reason for error messa

  • Goods issue in REM process

    hi sir, I am new to SAP, so plz guide me. in Paper industry this is the actual Business Process: In  papers industry  they have different varieties of paper production in which they are characterized by the GSM (thickness), sizes  and  grades. These

  • Acrobat 9 Pro and Microsoft Access

    I am new to Adobe Pro and was wondering if it is possible to create a form that would have text boxes that a user would fill in and email to a supervisor. Once the supervisor receives the email I would like them to click on a button on the form that

  • Where can I buy a cellular signal booster?

    I have little or no reception on my iPhone, and most calls are dropped or never get through.  I have to go outside in the street in order to get enough reception to place a phone call.  Yet, the Verizon coverage map shows my area as having excellent