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?

Similar Messages

  • I recently upgraded computer to windows 7.  When I open itunes I am able to see my music library, but unable to play.  Gives an error message of "Could not be found".  How do I retrieve my library contents?

    I recently upgraded computer to Windows 7.  When I open itunes I am able to see my music library, but unable to play.  Gives an error message of "Could not be found".  How do I retrieve my library contents?

    Hello ehoff5,
    I would be concerned too if I was not able to play my music in iTunes.  It sounds like the music files may be in a location that iTunes is not expecting.  I recommend reviewing the following articles to locate you music files on your computer:
    iTunes: Finding lost media and downloads
    http://support.apple.com/kb/ts1408
    Where are my iTunes files located?
    http://support.apple.com/kb/ht1391
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • 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

  • 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

  • Error messag: File could not be found

    Hello,
    I don´t know were to post this so I give it a try here:
    I get a error message: RealPlayer: The file could not be found. The used link is outdated or incorrect. (below I see the link adress)
    Were can I get rid of this link? I don´t know were to change it or delete it so the message won´t show up again.
    Thank you for your help

    Just spoke to Apple cust service (the tech at the Genius bar in the Arlington VA store could not figure it out).
    Cust service suggested I close iTunes, then remove two files iTunesLibrary.itl and iTunesMusic.xml from iTunes to the Desktop. Then open iTunes, which will be empty. Load backup discs (which I fortunately have), populate iTunes again, which will now include the previously missing files, and then delete the files on the Desktop.
    If the backup does not work, then drag the two desktop files back to iTunes which should then not be empty but have the reduced population.
    The problem is apparently caused by anti-virus s/w which attaches to songs and quarantines or deletes them. Can happen any time, so the importance of keeping backups up to date.
    Let me try it and see what happens.

  • Error message:  AVCFPlayerAppliesMediaSelectionAutomaticallyKey could not be found in AV FoundationCF.dll.

    I have repeatedly unistalled and reinstalled iTunes and quicktime to only received the same error code:  AVCFPlayerApliesMediaSelectionAutomaticallyKey could not....etc.  I have been searching and doing this since November 2013.  There must be a way to get it to work.  I have a PC operating on Window 7.   I have no problem on the MAC, but I'm a PC girl. 
    I was getting the apple application error, but I managed to get that installed. 
    Yes, I have gone into the control panel to repair the issue, but that too didn't work.

    I rebooted, reinstalled, rebooted and received the error code: Apple application support (error 2). Of all items deleted the only one that installed was iTunes. No bonjour, etc.
    Okay ... let's try installing the other components standalone.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/download.htm
    Right-click the iTunesSetup.exe (or iTunes64Setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder:
    Doubleclick the AppleApplicationSupport.msi to do a standalone AAS install.
    Doubleclick the AppleSoftwareUpdate.msi to do a standalone ASU install.
    Doubleclick the AppleMobileDeviceSupport.msi (or AppleMobileDeviceSupport64.msi) to do a standalone AMDS install.
    Doubleclick the Bonjour.msi (or Bonjour64.msi) to do a standalone Bonjour install.
    Do those all go through okay? If so, can you get iTunes to launch without the error messages?

  • When I sync my ipad 2 I get error message ipad could not be found

    When I sync my ipad photo's and tunes download onto my PC but before the sync is completed I get error message saying ipad can't be found. How do I complete the sync process. I have updated version of itunes but still have problem

    You may have a backup that is causing this problem, but I would start with something very simple. Quit iTunes, reboot your PC and restart the iPad and then try again.
    Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.

  • Error message: file could not be found.

    I use iTunes 8.2.1.6. I have started getting this message "Song X could not be used because the original file cannot be found. Would you like to locate it?" for about a quarter of the songs in my library. If I click "locate", it takes me to a window with program files, apparently.
    It also syncs only 3/4 of my songs to my classic iPod, again something new. And does not back up to disc: just freezes on a song and then crashes. The iPod was bought on July 11, 2009.
    Appreciate any advice. Thanks!

    Just spoke to Apple cust service (the tech at the Genius bar in the Arlington VA store could not figure it out).
    Cust service suggested I close iTunes, then remove two files iTunesLibrary.itl and iTunesMusic.xml from iTunes to the Desktop. Then open iTunes, which will be empty. Load backup discs (which I fortunately have), populate iTunes again, which will now include the previously missing files, and then delete the files on the Desktop.
    If the backup does not work, then drag the two desktop files back to iTunes which should then not be empty but have the reduced population.
    The problem is apparently caused by anti-virus s/w which attaches to songs and quarantines or deletes them. Can happen any time, so the importance of keeping backups up to date.
    Let me try it and see what happens.

  • Error message song could not be found

    i am running latest version of itunes. I am unable to access tracks from itunes I keep getting error message the song could not be used because the individual file could not be located. I am able to play any track from the itunes music folder but not from itunes!!! i have reloaded itunes but makes no difference. once the track has been played from the itunes libary it can be played in itunes

    jadeypup,
    See if this article helps, many have had this issue resolved by "recreating the iTune Music Library"
    http://docs.info.apple.com/article.html?artnum=93313
    Also, see this article for information on how to search the computer for the songs:
    http://docs.info.apple.com/article.html?artnum=301749
    Hope this helps,
    Generik
    PowerMac G4/Dell Precision WS 370, XP Pro   Mac OS X (10.4.7)  

  • Error Message: "Resource could not be found" while attempting to restore iPod Touch w/ iOS 6.0

    Hey all,
    While attempting to restore my friend's iPod Touch I got several error messages after which, ultimately, I would be unable to complete the restoration.
    When I first connected the iPod touch to my MacBook Pro I received this error message:
    I therefore attempt to update it's software and find that it has been updated to the latest version (iOS 6.0).
    I move on to restore and regardless of whether or not I choose to back up I receive this error message:
    By clicking on "More Information" I am brought to this web page:http://support.apple.com/kb/TS1275
    However, this page was last updated in October of 2012 and I seem to remember the new iTunes update happening after that.
    Any ideas regarding what might be the problem and how to solve it?
    Thanks for all your help. Happy New Year!

    To be clear, I'm unsure whether or not iOS 6.0 is the latest iPod Touch software but I did get this error message when I attempted to update:
    I hope this helps. Thank you!

  • Receive an Application Error (The memory could not be "read") when opening

    After I install Itunes the program works ok until I close it and try to reopen. When I do this I receive an Application Error that says:
    The instruction at "0x6686f183" referenced memory at "0x0fccc094". The memory could not be "read".
    Click OK to terminate the program
    Click CANCEL to debug the program
    Debugging does not work so the only solution is to uninstall Itunes and then reinstall. That again only works for one use of the program. As soon as I close it and re-open, I get the same error. Please HELP. I cannot waste any more time uninstalling and reinstalling.
    Sony   Windows XP  

    Try this: Turn off automatic Microsoft/Windows updates and reboot your computer. I saw this a couple of weeks ago on the forum.

  • I get an error message of could not load video when trying to watch a rented video from iTunes how do I resolve this?

    Aanyone help I cannot watch a rented movie I have downloaded from iTunes as I get the above message- there is also no option to delete and re download the film can anyone help?

    I would suggest contacting iTunes Support http://www.apple.com/support/itunes/contact/ to see if they can resolve the problem.
    Good luck,
    UG

  • Error message:song could not be found would you like to locate it

    The music is already in my folder, as this had =s happened with most of my music is there a quick fix?

    You get exclamation marks or dead tracks because iTunes can’t find the file. This can happen for a number of reasons:
    The song file or a folder in its path was renamed
    The song file or the folder it is in has been moved
    The song file has been deleted
    The device containing the song files e.g. external drive is not accessible.
    So did you change anything? If so can you put it back how it was?
    Anyway, if all your tracks have exclamation marks, the quickest fix is to close iTunes, then drag iTunes Library.itl and iTunes Music Library.xml out of your iTunes folder to the desk top.
    Then open iTunes and an empty library is created. Then use File>>Add folder to library to add your iTunes umisc folder to iTunes. If you have music in other folders add those too.
    This fix loses all coutns, ratings and playlists.
    If only a few tracks have exclamation marks, you can just add your iTunes music folder, this will not create duplicates, but will add any missing tracks.
    The entries with exclamation marks will remain and these can be removed, which I can tell you how to do if you choose this route.

  • 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

  • Quick time error "a file could not be found"

    Quick time error "a file could not be found" when trying to open a file that exist in a directory name including hebrew characters.
    When copying the same file to other directory with english characters only, file opens without any problem.
    This is very frustrating since my files are located under My documents directory
    The full path of the "My Document" directory is:
    C:\Documents and Settings\אלון\My Documents.
    Also, I have IPOD 5G (with video). iTunes does not have any problems with audio files located under the above directory, but video files for my IPOD have the same problem (since probably it is using Quick time). The problem with iTunes is more frustrating since it does not report any error, but you just cant update video podcasts or add video files to library.
    I spent a few days to uderstand this.
      Windows XP  

    http://discussions.apple.com/thread.jspa?threadID=769732
    This is a old post from when I had recieved the Error-43 file could not be found. In my case I had a drive lettered F:\ F:\ when changing the drive to a single letter F:\ it resolved the problem, so something you might want to take a look at.

Maybe you are looking for