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

Similar Messages

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

  • Error in File *.rpt The request could not be submitted for background...

    I am getting an error while trying to create an excel file.  Excel format was created using crystal ver 10. the report file (*.rpt) was saved on the Windows 2003 Web Server.  To export the data to Excel we use a .Net application that receives the data from a Java application that's on a Linux server...  This process works fine on our test server, but is not working on production.  Both servers have the same applications installed on them, the only difference is that our production server is a vitual server.

    See if this article will be of help:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50a6f5e8-8164-2b10-7ca4-b5089df76b33
    If not, provide more information, such as:
    1) Version of .NET
    2) Exact version of CR
    3) What CR Service packs have been applied
    4) Way more info on how this is being done:
    " .Net application that receives the data from a Java application that's on a Linux server..."
    Ludek

  • 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

  • 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

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

  • HT1449 copying files failed. the disk could not be read from or written to.

    Im moving my iTunes to an external hard drive. Its moved about half already and Im now getting this error. I have no idea what file its getting stuck on so I cant remove that file. When I restart it it will say preparing to copy then I get the error right away. I dont want to delete the extrenal and start over if I dont have to.

    Ive already changed the location for my itunes media to my extrenal hard drive so when i click to consolidate files Im getting the error
    copying files failed. the disk could not be read from or written to

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

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

  • The software could not be found on any servers at this time

    Hello,
    Within the last few days OSD from within the OS has started to fail. The error it provides is
    The software could not be found on any servers at this time. I find this error misleading since I can PXE, connecting to the same server, and the OS installs without issue.
    For giggles I did try and install some updates and other software from the server and they installed using Software Center. With that my boundaries are setup and the client is communicating with the DP.
    Distribution Point='http://<server.domain>/SMS_DP_SMSPKG$/Content_f90faa01-0846-4704-9d86-d788273ab397.1', Locality='LOCAL' ContentAccess 1/13/2015 9:18:31 AM 6392 (0x18F8)
    Requesting locations synchronously for content Content_50cea2c8-29cb-48c4-830b-571f72e14c04.1 with priority Medium ContentAccess 1/13/2015 9:18:31 AM 6392 (0x18F8)
    Requesting locations synchronously for content Content_d5a14c61-8ab2-4ec9-808a-ab6f89ab56f8.1 with priority Medium ContentAccess 1/13/2015 9:18:31 AM 6392 (0x18F8)
    Requesting locations synchronously for content Content_0ea10922-95d6-4751-a3da-3dab19e70fa4.1 with priority Medium ContentAccess 1/13/2015 9:18:31 AM 6392 (0x18F8)
    Requesting locations synchronously for content Content_310e7d49-0dd2-479b-886d-9c822ff214c4.1 with priority Medium ContentAccess 1/13/2015 9:18:31 AM 6392 (0x18F8)
    Requesting locations synchronously for content Content_cc2d6253-a90d-489b-b294-7eb3ed645029.1 with priority Medium ContentAccess 1/13/2015 9:18:31 AM 6392 (0x18F8)
    Requesting locations synchronously for content Content_a41d3047-5a90-400b-bc76-7808ff0c8503.1 with priority Medium ContentAccess 1/13/2015 9:18:31 AM 6392 (0x18F8)
    Requesting locations synchronously for content Content_fed1abf3-ab3b-45ef-9c20-8a419c2a13b6.1 with priority Medium ContentAccess 1/13/2015 9:18:31 AM 6392 (0x18F8)
    Requesting locations synchronously for content Content_879fade3-5b18-4959-bb2b-bc8a9bed1f71.1 with priority Medium ContentAccess 1/13/2015 9:18:31 AM 6392 (0x18F8)
    Requesting locations synchronously for content Content_16bba65e-16a6-49bd-b757-536e65ff94f1.1 with priority Medium ContentAccess 1/13/2015 9:18:31 AM 6392 (0x18F8)
    Requesting locations synchronously for content Content_4a8abdc6-2c2e-4f4c-b2ab-38306ba90425.1 with priority Medium ContentAccess 1/13/2015 9:18:31 AM 6392 (0x18F8)
    Requesting locations synchronously for content Content_0b1e115f-d8cf-4b2a-944e-bdd888c1775e.1 with priority Medium ContentAccess 1/13/2015 9:18:31 AM 6392 (0x18F8)
    Requesting locations synchronously for content Content_384b9d17-1502-467a-99ca-2669f0d1b5c7.1 with priority Medium ContentAccess 1/13/2015 9:18:31 AM 6392 (0x18F8)
    Requesting locations synchronously for content Content_68117c8a-50c3-4b95-9e3e-965238fe749a.1 with priority Medium ContentAccess 1/13/2015 9:18:31 AM 6392 (0x18F8)
    Requesting locations synchronously for content Content_a38b2000-a2d6-4974-8409-827a76ad1b17.1 with priority Medium ContentAccess 1/13/2015 9:18:31 AM 6392 (0x18F8)
    The number of discovered DPs(including Branch DP and Multicast) is 0 ContentAccess 1/13/2015 9:18:31 AM 6392 (0x18F8)
    I have a feeling the final line is the indicator to my problem, but I dont understand why. Unfortunately this seems to be happening at other sites as well.
    Edit
    I checked the boundary groups and made sure that they had at least 1 site server assigned. I also checked the permissions of Production (not-working) to Test (working) and they line up. When I choose 1 application/update to install the line
    The number of discovered DPs (including Branch DP and Multicast) is 0
    changes to 1. I also do not have the servers DP set to pre-deploy, if I recall that is the wording on the first tab of the DP settings. Also browsing the HTTP address provides results.

    Hi,
    The task sequence for unknown and known is the same.
    That is what I want to confirm. I did more research, and some indicate boundary issue:
    https://social.technet.microsoft.com/forums/systemcenter/en-US/75b22009-48ea-43b6-8992-b1f3d3bbe51c/the-software-could-not-be-found-on-any-servers-at-this-time
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Error in File UNKNOWN.RPT: The request could not be submitted for backgroun

    I receive: Error in File UNKNOWN.RPT: The request could not be submitted for background processing.
    The error is on a windows Server 2008 SP2 production server. The report generates fine if I run it from within Visual studio 2008 on the server but not through IIS. The Crystal Reports is the version that came with vs2008 (10.5).
    Initially I was getting unauthorized access errors so I granted full access to everyone for the bin and managed crystal report folders under program files. This fixed the unauthorized access problem but now I get the background processing error. I also tried to inpersonate an admin account with the same result. I tried to copy the crystal reports dll's to the bin folder for the project but that did not help either. I am running out of ideas. I did notice that a 16kb rpt file is generated in the Windows/temp folder every time I try to run the report.
    the crashing page is here Link:[http://futuretechgroup.com/cgi-bin/crystaltest.aspx]
    Here is the event log:
    Event code: 3005
    Event message: An unhandled exception has occurred.
    Event time: 5/24/2010 12:24:56 PM
    Event time (UTC): 5/24/2010 7:24:56 PM
    Event ID: 87ee3d9297fb409ea7b440b059a0f07d
    Event sequence: 4
    Event occurrence: 1
    Event detail code: 0
    Application information:
        Application domain: /LM/W3SVC/5172/ROOT-1-129192026961318172
        Trust level: Full
        Application Virtual Path: /
        Application Path: C:\inetpub\vhosts\futuretechgroup.com\httpdocs\
        Machine name: FTG2009
    Process information:
        Process ID: 3644
        Process name: w3wp.exe
        Account name: FTG2009\IWPD_1(yanoshftg)
    Exception information:
        Exception type: CrystalReportsException
        Exception message: Load report failed.
    Request information:
        Request URL: http://futuretechgroup.com/cgi-bin/crystaltest.aspx
        Request path: /cgi-bin/crystaltest.aspx
        User host address: 70.173.237.72
        User: 
        Is authenticated: False
        Authentication Type: 
        Thread account name: FTG2009\IWPD_1(yanoshftg)
    Thread information:
        Thread ID: 5
        Thread account name: FTG2009\IWPD_1(yanoshftg)
        Is impersonating: False
        Stack trace:    at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened()
       at CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob)
       at CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename)
       at cgi_bin_CrystalTest.CreateReport() in C:\inetpub\vhosts\futuretechgroup.com\httpdocs\cgi-bin\CrystalTest.aspx.vb:line 15
       at cgi_bin_CrystalTest.Page_Load(Object sender, EventArgs e) in C:\inetpub\vhosts\futuretechgroup.com\httpdocs\cgi-bin\CrystalTest.aspx.vb:line 9
       at System.Web.UI.Control.OnLoad(EventArgs e)
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)

    1. The OS is 32bit
    2. Yes. The C drive is the primary drive
    3. For the sake of simplicity and to troubleshoot the sample code has no datasource just 'Hello' in the report header. The Actual work order report that I need has ADO as datasource and it builds a PDF report without any problems when I run the page from VS2008 (development server) so I think the dll's are where thay are supposed to be. The c:\windows\assembly folder has about 25 CrystalDecisions files (10.5.37).
    Do I still need to create a deployment package even though I have everything else working?
    Below is the code I am using to create the report
        Sub CreateReport()
            Dim myReport As New ReportDocument
            'Try
            myReport.Load(Server.MapPath("CrystalReport.rpt"))
            'Catch ex As Exception
            'MsgBox(ex.InnerException.ToString)
            'End Try
            Dim g As Guid = Guid.NewGuid
            Dim woPath As String = "../FileTemp/" & g.ToString & ".pdf"
            'Try
            Dim CrExportOptions As ExportOptions
            Dim CrDiskFileDestinationOptions As New  _
            DiskFileDestinationOptions()
            Dim CrFormatTypeOptions As New PdfRtfWordFormatOptions()
            CrDiskFileDestinationOptions.DiskFileName = _
                                        Server.MapPath(woPath)
            CrExportOptions = myReport.ExportOptions
            With CrExportOptions
                .ExportDestinationType = ExportDestinationType.DiskFile
                .ExportFormatType = ExportFormatType.PortableDocFormat
                .DestinationOptions = CrDiskFileDestinationOptions
                .FormatOptions = CrFormatTypeOptions
            End With
            myReport.Export()
            'Catch ex As Exception
            'MsgBox(ex.ToString)
            'End Try
            Response.Redirect(woPath)
        End Sub

Maybe you are looking for

  • Pictures on web pages do not show up in Firefox

    I've created several iWeb pages with images and movies. I have an uncle who lives 1700 miles away who has an older iMac running Panther 10.3.9 and he is using Safari (apparently Panther cannot run the latest version 3 - he's either running version 2

  • Upgrading to iPhoto '09?

    Hi, I was wondering if there is a way to only upgrade iPhoto? I dont want to upgrade (or pay to upgrade) the rest of iLife but couldnt seem to find an option to just upgrade iPhoto! Does this exist - any help would be great.

  • Problems syncing with iTunes

    When syncing to iTunes, it says that my phone needs much more space (over 600MB) to sync. According to the bar at the bottom of iTunes in the phone summary screen, I have nearly 4GB of memory left. Whats up with this?

  • Purchasing new iMac 04/22/09 Questions

    I want to purchase an iMac 24" this weekend but I am concerned about the issues with the video cards freezing the computer. Should I not buy one at all or purchase one with the NVIDIA GeForce 130 512MB vs the ATI Redeon HD 4850 512 MB. Is this a bug

  • Qosmio G30-177 broken graphic card

    Hi, it looks like i have a broken graphic card in my G300. The boot screen (selection of boot media) looks like the matrix ;-( While windows is booting it looks like vertical stripes. The boot process crashes with a blue screen. This is both in the i