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

Similar Messages

  • 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 requtest could not be submitted for backgroung p"

    Our Web applciation is using ASP.Net Framework 2.0 and Crysal Report Assembly version is 10.2.3600.0
    After fetching one particular report we are getting below error
    "Error in file c:\windows\temp\FileName{1B044BEA-1C14-44DF-92DC-107455F949FD}.RPT
    The requtest could not be submitted for backgroung processing."
    There is no problem while fetching data from backend procedure. It runs without error.
    Is there any hot fix for the same?

    We too are facing same challange with CrystalReports Version=10.2.3600.0
    Can some body post resolution.
    Thanks in advance.
    -Murali

  • 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

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

  • 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

  • New Installation Failing w/Error: The update could not be found.

    On a new 2008 R2 server (Standard), using the Add Roles Wizard, I tried adding WSUS but it fails with "The update cound not be found. There may be a network connection issue. Click here for more information."
    Clicking there takes me to the "Resolving WSUS issues" pages with refereces to Microsoft. The first is the most relevent:
    "If you receive the message “The update could not be found. There may be a network connection issue.” when you try to install WSUS, refer to the information in the Network and Sharing Center Troubleshooting Guide."
    Clicking on the link to the "Network and Sharing Center Troubleshooting Guide http://go.microsoft.com/fwlink/?LinkId=140135" takes me there (so there are no connectivity issues) but nothing seems to apply to my issue. I can browse the internet just fine and have even went in and manually installed various required components like IIS, .NET Framework 3.5.1, and Windows Internal Database but still no luck. I even downloaded the file "WSUS30-KB972455-x64" and tried running that without success. What am I missing?
    Thanks in advance.

    On a new 2008 R2 server (Standard), using the Add Roles Wizard, I tried adding WSUS but it fails with "The update cound not be found. There may be a network connection issue. Click here for more information."
    To install WSUS as a role, the candidate server must either have an active Internet connection to obtain the WSUS installation package from Microsoft Update, or be configured to update from an existing WSUS server with the WSUS3SP2 Dynamic Installer package already approved. If the R2 server is configured to use WSUS and the WSUS3SP2 Dynamic Installer package is not approved for installation for the group(s) in which the R2 server is a member, then you may also encounter this situation.
    and have even went in and manually installed various required components like IIS, .NET Framework 3.5.1, and Windows Internal Database but still no luck. I even downloaded the file "WSUS30-KB972455-x64" and tried running that without success. What am I missing?
    That's hard to say. Running the installer should not have presented any issues, but then you've not shared the exact details of that particular failure, which almost certainly would have been different from the previous failures encountered using Server Manager. Of course, successfully running the installer presumes that the server has been properly prepared and prerequisites have been properly installed and configured. I would be concerned that you don't seem to have referenced and followed the explicit instructions documented in either the Step By Step Guide or the Deployment Guide, so this is a high probability source of the cause. (Note: .NET Framework 3.5.1 is NOT a required component, the Windows Internal Database does not require manual installation for WSUS, and if IIS7 is not properly configured with the exact requirements for WSUS, the installation will fail.)Lawrence Garvin, M.S., MCITP:EA, MCDBA, MCSA
    Principal/CTO, Onsite Technology Solutions, Houston, Texas
    Microsoft MVP - Software Distribution (2005-2010)
    My MVP Profile: http://mvp.support.microsoft.com/profile/Lawrence.Garvin
    My Blog: http://onsitechsolutions.spaces.live.com

  • Crystal Reports XI - The memory could not be "written"

    Post Author: neildittmar
    CA Forum: General
    We develop and distribute applications using Crystal Reports XI via the RDC component in Visual Basic 6 under Windows XP (SP2).  One of our clients is having issues when launching Crystal Reports from an application.  The data for the report is processed for a period of time, but eventually a Windows error is returned indicating:  The memory could not be "written"
    It is important to note that this report is very data heavy and can produce a 500 page report.  Upon some analysis we've done on-site, we've found that a local administrator can run this report successfully multiple times without receiving the above mentioned error.  However, a user account that is much more restricted in regards to Windows file permissions consistently receives the error.  The clients IT department uses a computer management software that severely limits what individual user accounts have access to on their workstations.
    Our questions are as follows:
    1.  What folders on the client PC are utilized when generating a Crystal Report utilizing the RDC from a Visual Basic 6 application?  From what we can tell, .TMP files are written to the Local Settings\Temp folder of the User account under "Documents and Settings", but it also appears that these files can be written to the root C: drive as well as other places.
    2.  Does Crystal Reports XI require local administrator access on the workstation for users who execute programs utilizing it?

    Thank you,
    I doubt i am able to connect to the same database instance from forms builder 10g but not with forms 6i.I thought it is compatibility of 10g database with forms 6i but that is also not true i am able to connect other 10g database instance with forms 6i builder.
    Is the error is due to improper installation of database instance??
    Thanks

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

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

  • The DLL could not be found error

    I have upgraded the IMAQdx on Real-Time Desktop target from 3.7 to 3.8 version. After that all imax functions in LabVIEW and MAX return same IMAXdx error "The DLL could not be found". Does anybody know what happens and how to fix this problem? I have tried uninstall the IMAQdx and then insall it again. This does not help.
    Sergey

    Yes, it is activated on my laptop that I use to upload software to real-time target (real-time desktop on NI 8354). Unfortunately I cannot find the procedure to activate IMAQdx on real-time. It works fine before IMAQdx upgrade and I cannot remember any additional actions I have performed when I have install it first time.
    Sergey.

  • The server could not be found on the network ORA-12154

    Hi All,
    I have problem with one application. She run with Oracle DB. I installed Win2008R2 x64 and Oracle DB 32bit on the same server. I tried connect to DB via Oracle SQL Developer and SQL Plus and both run without problem, but when I insert the same parameters into application OpenText Content Server 10, then I see this Error:
    Content Server Error:
    [Error: The server could not be found on the network. ----> Error stack ----> 1) E675414020:The server could not be found on the network.:ORA-12154: TNS:could not resolve the connect identifier specified ]
    This application need only 3 parameters (System User Name, password and service name). I compare it with ORA files (listener, sqlnet and tnsnames) and I think that all is right. Here are this three files
    listener:
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = WIN-R0OEE0OAE5Z)(PORT = 1521))
    sqlnet:
    SQLNET.AUTHENTICATION_SERVICES= (NTS)
    NAMES.DIRECTORY_PATH= (TNSNAMES)
    tnsnames
    ORCL =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = WIN-R0OEE0OAE5Z)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = orcl)
    Do you have any idea where is problem?
    Thank you
    Vaclav

    893964 wrote:
    Hi All,
    I have problem with one application. She run with Oracle DB. I installed Win2008R2 x64 and Oracle DB 32bit on the same server. I tried connect to DB via Oracle SQL Developer and SQL Plus and both run without problem, but when I insert the same parameters into application OpenText Content Server 10, then I see this Error:
    Content Server Error:
    [Error: The server could not be found on the network. ----> Error stack ----> 1) E675414020:The server could not be found on the network.:ORA-12154: TNS:could not resolve the connect identifier specified ]
    This application need only 3 parameters (System User Name, password and service name). I compare it with ORA files (listener, sqlnet and tnsnames) and I think that all is right. Here are this three files
    listener:
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = WIN-R0OEE0OAE5Z)(PORT = 1521))
    sqlnet:
    SQLNET.AUTHENTICATION_SERVICES= (NTS)
    NAMES.DIRECTORY_PATH= (TNSNAMES)
    tnsnames
    ORCL =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = WIN-R0OEE0OAE5Z)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = orcl)
    Do you have any idea where is problem?
    Thank you
    VaclavYou listener has nothing to do with this error. Your request for a connection never left the client machine.
    http://edstevensdba.wordpress.com/2011/02/26/ora-12154tns-03505/

Maybe you are looking for

  • Photoshop Elements 8 Editor

    I keep getting an error that my editor software has stopped working. It was working just fine till about 3 days ago. Using Windows Vista, IE8, Office 2007 The organizer still works. My Premiere Elements 8 is still working. Here is what I've tried so

  • Choose macbook pro.

    Hi, I need to know which macbook pro I should by for my needs. I'm a graphic designer and I've been working for one year with an iMac 21,5" 3.06 GHz Intel Core 2 Duo 8GB Ram and never had any problem of velocity also using many programs at the same t

  • N95-can't remove .sis from SD

    Hi all, my beauty, N95, gives me pure and real satisfaction but also plays me hard (pretty much like all the beauties I know...) First issue: have installed to SD two .sis files (games) and after upgrating to 12, I can't REMOVE nor RUN them. Should I

  • HT5035 Where do I find my $ balance now?  It disappeared with the update.

    I'm very frustrated with the update to iTunes.  It lost the links to my libraries, has no vertical scroll bar in either my libriaries OR iTunes store forcing me to use the keyboard to manuver, and my iTunes store $ balance has disappeared for where i

  • Help w/Sum column

    The following query will return the last 10 records of a table where the record date falls within the first and last of the current month: <pre> SELECT * FROM ( SELECT p_id, f2, amount, date1 FROM mytable a WHERE a.date1 BETWEEN TRUNC(SYSDATE,'MM') A