One Crystal Report portable to different databases (same database design)

Good day,
I apologize first off, as I am NOT a programmer, just a user.
In summary:
Crystal Report for data from Sql database.
Currently using ODBC connection and linking to database.
However, we have multiple databases, all with the same table structure etc, just different data.
Right now we change the datasource for each database.
The crystal report is run from an in house program
Is there a way we can have the report set so that it will pull the datasource at runtime, and not be hard coded into the crystal report.
Our goal is to take the one report and have our users of each database be able to access their own data without creating multiple copies of the report with each dataset.
Thanks,
RY

Hi Ryan,
As per my understanding you have multiple databases with the same database schema however with the different data. You would like to create reports where the user should be able to select which database to use and this should not be hard coded.
In this case you can use the Business View wherein you have the feature of Dynamic data connection which basically is a pointer to different Data Connections
A Dynamic Data Connection is a collection of pointers to various Data Connections. An administrator or user is able to select which Data Connection to use through a parameter.
When users refresh reports that are based on a Dynamic Data Connection, they are prompted to specify which of the available Data Connections to use.
Note that each of the data sources that a Dynamic Data Connection points to must have similar schemas
When a Business View designer creates a Data Foundation that is based on a Dynamic Data Connection, this user is prompted to specify which Data Connection to use. Similarly, when a user refreshes a report based on a Dynamic Data Connection, that user is prompted to specify which Data Connection to use. In the usage scenario, you would create one Dynamic Data Connection composed of the three ORACLE sales databases: Sales Development, Sales Testing, and Sales Production. A typical name for such a Dynamic Data Connection would be Dynamic Sales.
I hope this information helps you and let me know if this works for you.
Regards,
Prashant

Similar Messages

  • How to get one crystal report to work with two different backends?

    We have a software that can work with either SQL2008 or Visual Fox Pro backend.  We are trying to compile One Crystal report that will work with either of the two backends.  How to you make sure that your Crystal Report is compiled so that it will work with both backends?
    Right now my reports were originally created using the SQL2008 backend and are retaining the DBO reference in the statement, which then will not allow the Crystal report to work with the VFP backend.

    You can write your data sets as a command using hand coded SQL. As long as "dbo" is the only schema used in your SQL Server database, you don't need to specify it in the SQL. SQL Server will automatically assume the dbo.
    The 2nd thing... The SQL needs to be 100% compatible with both SQL Server 2008 AND VFP.  This will limit the list available functions to those that are common to both platforms AND work exactly the same in both platforms.
    The other part is to make sure you are using an ODBC type connection instead of OLD/DB. That way all of the connection properties are set on the local machine and the report is simply looking for the System DSN name.
    HTH,
    Jason

  • How do i access multiple bex queries in one crystal reports??

    Hello Experts,
    I have 10 cubes and 30 bex queries on it and i need to create 3 final crystal reports on these 30 queries.
    I am on BI 4.0 & CR 2011. but my client is not on correct SAP patch ie., he is on 15+ but he must be on 23+ to access multiple bex queries on CR 2011 Database expert. (I am unable to see bex queries in Database expert to link couple of bex queries)
    And my client env doesnt have SAP EP for SAP BW Netweaver Connection to create a connection to access cubes or queries in IDT.
    Do my client env need EP? so that SAP BICS Connection will work in IDT?
    How do i approach to achive this...
    Thank you...

    Hi,
    have you checked the option "allow external access" in your query? SAP Toolbar will find all queries but the database export needs this flag to be set.
    Using multiple queries within one crystal report is using the "multi database join feature" of crystal reports. You can link your queries by key fields and crystal will join them in memory. So when there are many queries or many datarows this can be a huge performance killer.
    Actuallly one of our customers is running a report which has more than 20 BEx queries linked together. It runs just fine.
    Please be sure to set your joins correctly. E.g. crystal will try to make a join on the "key figures" sturcture if you let it create a suggestion or it will try to link on all fields of an infoobject. This will bring MDX errors.
    So you should be setting your joins correctly - the [infoobject]-[20infoobject] fields are fine for that.
    I hope you can use some of my words.
    Regards
    Thorsten

  • Pointing a Crystal Report at a Different Universe

    We have a Crystal Report which sources its data from a universe.  Is there a way (using the SDK) to point the
    Crystal Report at a different but functionally equivalent universe?  My current strategy is to get the table objects
    in the top level report and subreports, and replace their ConnectionInfo objects.  This seems to work fine, but
    when I save the report out to Enterprise I'm not seeing my changes reflected in the resulting report.  Is there a
    better way to go about this?
    Thanks in advance!
    -m 
                foreach (ISCRTable t in reportClientDocument.Database.Tables)
                    t.ConnectionInfo = newConnectionInfo;
                // replace the connections in the subreports
                foreach (string subreportName in reportClientDocument.SubreportController.GetSubreportNames())
                    SubreportClientDocument scd = reportClientDocument.SubreportController.GetSubreport(subreportName);              
                    foreach (ISCRTable st in scd.DatabaseController.Database.Tables)
                        Console.WriteLine("Subreport Table Name: " + st.Name);
                        st.ConnectionInfo = newConnectionInfo;
                Object folderId = (Object)1234;
                reportClientDocument.SaveAs(
                    "TEST",
                    ref folderId,
                    (int)CdReportClientDocumentSaveAsOptionsEnum.cdReportClientDocumentSaveAsOverwriteExisting

    No way currently using the SDK.
    You need to go through the Crystal Reports Designer, that has the internal magic.
    Sincerely,
    Ted Ueda

  • While generating a crystal report can we edit database fiels in field explorer (at middle can we edit database fields)

    while generating a crystal report can we edit database fiels in field explorer (at middle can we edit database fields)

    Wrong forum to post the question, try to post the question in crystal reports community.
    Its not possible to edit the database fields while creating the reports, its only used to call the rows of values in it. Can you explain me in detail what are you actually looking for .
    --SumanT

  • While generating a crystal report can we edit database files in field explorer ?

    Hi,
    while generating a crystal report can we edit database files in field explorer (at middle can we edit database fields)
    Regards,
    Mahendra

    Wrong forum to post the question, try to post the question in crystal reports community.
    Its not possible to edit the database fields while creating the reports, its only used to call the rows of values in it. Can you explain me in detail what are you actually looking for .
    --SumanT

  • Crystal Reports XI - How to pull same column value with different select...

    I have a report with many (around 30) sub reports and it is giving serious performance issue. I am currently finding out a strategy to improve the performance. I see that most of the sub reports are taking same parameters from main report except for one parameter which is different for each sub report and hard coded in them and pulling up the same column value from a oracle database with a different select criterion. I am trying to find out a way using either of command/crystal formula/SQL expression which can do the same job for me and give me performance improvement. I tried to take the parameters from the main report in one sub report and mapped them to parameters being transferred to the command and then drag and drop the field for which I need to display the value but due to some reason it is not returning values when I am trying multiple commands...I need some help in selecting a strategy for this issue resolution and some guidance....Any help would be highly appreciated....

    My version is 11.5.8.826. First of all I need to make it clear that I have 6 set of sub reports and each set has 5 sub reports. So if I can resolve the issue for one set, I resolve it for all. The sub reports are doing nothing but fetching a column value using a simple SQL SELECT query and appending to the right of a box in main report. The issue is that all these queries embedded into the sub reports are using same SQL except for one parameter in the "where" clause and they are fetching same column value from the database and fortunately all of them are returning same number of results. So at the end these results create a table when run. The only way I can stop using sub reports is by creating a table in the main report and use some object(formula/command/SQL expression or whatever) to fetch that column value using the same filter conditions. But please take a note that I need to use and append the same column value from a database table and use different filter conditions and append them to the right so that at the end they create a table...as long as I get the table in the output with a decent performance , anyone will be least bothered about what I used inside the report.....please ask me as many questions to get more lights on the issue....

  • Crystal Report Server: Cannot save Database Configuration in CMC

    I already posted this question as SAP internal CSN message (message number 1896093 2009) but did not get any answer so far.
    I have installed a test version (which I'd like to become permanent some     
    day...) of Crystal Reports Server 2008 on a local machine to be able to      
    share Crystal reports within our department.                                 
    I created a couple of reports which I would like to get updated              
    regularly. The issue is here that I get a logon screen to the underlying     
    SQL Server as soon as a user clicks on "Refresh" when viewing a report       
    from InfoView. The SQL Server is running on integrated security              
    via SSO, which I cannot change...                                            
    To get around this issue I would like to change the default Database         
    Configuration of the reports. Hence I do the following:                      
    1) I open the Central Mangement Console                                      
    2) I select one of my reports                                                
    3) Rightclick on Properties                                                  
    4) On the Default tab I select Database Configuration                        
    5) the config is set to "Logon Screen" and I ant to change this to SSO,      
    so I set this                                                                
    6) Now I click on Save                                                                               
    => The setting is reverted to the old "Logon Screen" settin1g                                                                               
    This behavior is the same for all the reports I'm using.                                                                               
    Looking forward to any help, kind regards                                    
    Wolfgang
    P.S.: Ultimately this issue arises, because I cannot refresh my crystal report data in batch job mode, because the reports are reading data from an SQL server, which allows SSO-logon (integrated security) only. Thus I have to open each and every report for update manually and click on the refresh button.
    Edited by: Ralf Wolfgang Geithner on Jul 3, 2009 11:00 AM

    Hi Manish,
    thanks for your answer. Unfortunately I'm still stuck in this matter.
    Does this happen with the sample reports too? I think it will be a good approach to try this to see if your system is behaving differently for sample reports and reports published from outside
    I did not really try this, but viewing and editing my reports in Crystal Reports 2008 Designer works perfectly fine. As well can the user view my reports in the InfoViewApp.
    Also, does it revert to the login screen setting immediately after you click Save or does it show the setting as changed after clicking Save but, does not retain it when you come back and check the report settings again?
    The data is reverted immediately after clicking "Save"
    Kind reagrds
    Wolfgang

  • Reuse Crystal report Viewer For different reports - unload cache

    So I am migrating from crystal reports basic to crystal reports 2008. I have hit a stumbling block. Rather than have a new page and report viewer for each report I decided it would be easier to have one report viewer and send to it in session variables the report I wish to run and appropriate parameters. This seemed to work fine in CR basic.
    Now I have upgraded the viewer works fine for the first report I run however it then caches this report and doesn't seem to clear it down, if the new report has different parameters I will get a parameter error. If I run a report requiring the same parameters I will get the original report not an updated one.
    I believe I need to leave the CrystalReportSource cache on in order to page the report (correct me if I am wrong)
    I have taken a few snippets of code, is this possibly running too late in page life cycle have I missed something or is there a way to force a cache clear:
    protected override void OnLoad(EventArgs e) {
    //setup report in viewer with correct db logon
                    CrystalRepSource.Report.FileName = report;
                    SetupLogonInfo(CrystalRepSource);
                    //add parameters
                    AddParam(paramFields, pfItem1, dcItem1, "@year", year);
                    AddParam(paramFields, pfItem2, dcItem2, "@school", school);
                    AddParam(paramFields, pfItem3, dcItem3, "@division", division);
                    AddParam(paramFields, pfItem4, dcItem4, "@progArea", progArea);
                    AddParam(paramFields, pfItem5, dcItem5, "@type", SessionHandler.record_type);
                    AddParam(paramFields, pfItem6, dcItem6, "@filterText", "School = \'" + school +
                                                            "\' Division = \'" + division
                                                            + "\' Programme Area = \'" + progArea
                                                            + "\' Record Type = \'" + SessionHandler.record_type_text + "\'");
    CrystalViewer.ParameterFieldInfo = paramFields;
    private void SetupLogonInfo(CrystalReportSource CrystalRepSource)
            TableLogOnInfo logOnInfo = new TableLogOnInfo();
            logOnInfo = CrystalRepSource.ReportDocument.Database.Tables[0].LogOnInfo;
            ConnectionInfo connectionInfo = new ConnectionInfo();
            connectionInfo = logOnInfo.ConnectionInfo;
            connectionInfo.DatabaseName = Application["db"].ToString();
            connectionInfo.ServerName = Application["server"].ToString();
            connectionInfo.Password = Application["pass"].ToString();
            connectionInfo.UserID = Application["user"].ToString();
            CrystalRepSource.ReportDocument.Database.Tables[0].ApplyLogOnInfo(logOnInfo);
        private void AddParam(ParameterFields paramFields, ParameterField pfItem, ParameterDiscreteValue dcItem, string fieldName, string value)
            pfItem.ParameterFieldName = fieldName;
            dcItem.Value = value;
            pfItem.CurrentValues.Add(dcItem);
            paramFields.Add(pfItem);

    ok so I have tried changing the code to:
    CrystalRepSource.ReportDocument.SetParameterValue("@year", year);
                    CrystalRepSource.ReportDocument.SetParameterValue("@school", school);
                    CrystalRepSource.ReportDocument.SetParameterValue("@division", division);
                    CrystalRepSource.ReportDocument.SetParameterValue("@progArea", progArea);
                    CrystalRepSource.ReportDocument.SetParameterValue("@type", SessionHandler.record_type);
                    CrystalRepSource.ReportDocument.SetParameterValue("@filterText", "School = \'" + school +
                                                            "\' Division = \'" + division
                                                            + "\' Programme Area = \'" + progArea
                                                            + "\' Record Type = \'" + SessionHandler.record_type_text + "\'");
    private void Page_Unload(object sender, EventArgs e)
            try
                    CrystalRepSource.Report.DataSources.Clear();
                    CrystalRepSource.Report.Parameters.Clear();
                    //CrystalRepSource.ReportDocument.Close();
                    //CrystalRepSource.ReportDocument.Dispose();
                    CrystalRepSource.Dispose();
                    CrystalViewer.Dispose();
                    GC.Collect();
            catch { }
    I experimented with various bits in the page unload as you can see I have commented a bit out at present as it was throwing an exception. The SetParametersValue while handy (will clean the code up a bit) didn't make any difference I am still getting the same issue.

  • Generated Crystal Report PDFs are different on Windows server

    Post Author: present
    CA Forum: .NET
    Hi,
    I created Crystal Report template (with two columns on one
    page) inside VS 2005 on my Windows XP Professional machine.
    But there are formating problems on both XP and Windows
    Server machines:
    1) On Windows XP machine, I have to overlap the two columns
    on the page inside VS 2005 editor in order to generate
    correct PDF file (without overlap). How to fix the the
    overlapping problem in editor?
    2) On Windows 2003 server: After I put the template on
    Windows 2003 server that has no VS 2005 installed (only
    CRRedist2005_x86.msi was installed), the generated PDF has
    different font size and layout (such as page size, column
    overlap, etc).
    Do I have to install VS 2005 on server too? It is really
    frustrating that I have to print document generated on the
    server before I know if the template works fine or not.
    Any help is highly appreciated!

    Typically when you are seeing page formatting issues on different machines, it could be because of printer drivers (or lack of).  The reporting engine relies on the printer driver configured on the machine to provide information so that a page can be properly rendered.  If you designed the report on your dev machine which is using PrinterA and then deploy to another machine using PrinterB, the formatting could be off.  So make sure that the exact same printer driver is being used on these machines.  If your deployments are expected to go to different machines where you don't know what printer will be installed, then you will need to design the report such that it can be rendered as best as possible.  Another option is to check the "No Printer" option and this should render the report the same on any machine with any printer, but then you'll need to make sure you handle any scenarios where the user wants to print to the printer.
    If this is an ASP.NET application then permissions could play a part if the printer drivers cannot be accessed.  There are whitepapers on the BOBJ support site that have information on to configure CR to print reports in ASP.NET apps.
    -MJ

  • 2 BI Reports in one Crystal Report

    Hi Guys
    Can i have a crystal report that shows result of 2 BI Queries.. side by side or maybe one on top and other at bottom. can the users refresh both reports at the same time ?
    If Crystal reports cant do this what about WEBI ?
    thanks

    You can take advantage of 'sub report' functions in CR. Return one of the query in main report and another one in subreport or you can create two sub reports under one main report.
    In WebI, you can create many reports with different queries when you design the report, just right click the first report at the bottom of the design panel, each report displayed as a tab.
    Thx, Hao

  • Opening multiple reports in Crystal Reports for VS causes database connect limit to be reached.  Seems to be no way to force Crystal Reports to close database connection (other than exiting application)

    I am working on upgrading an application that has been in use for many years.  The application is written in VB6 and I have been tasked with upgrading the current application to Crystal Reports for Visual Studio.  I am using Crystal Reports for VS Version 13.0.12.1494.  The system's database is a Sybase SQL Anywhere 16 database with an ODBC connection using integrated login.  Each of the reports has the database connection set up from within the report.  There is only once database server, so each of the reports are pointing to the same DB.  The database server is currently installed as a "Personal Server" with a limit of 10 connections. 
    I have implemented the CR viewer as part of a COM-callable wrapper that exposes a COM interface for VB6 to interact with.  Inside of my viewer component is a Winform that embeds the Crystal's Report viewer.  The COM interface basically maps the basic Crystal apis to methods that the VB6 can call (i.e., Load Report, Set Field Text, Update SQL Query, etc).  This architecture is working as designed and the reports are displaying correctly and responding correctly to changes in queries, etc.
    The issue is that after I open 9 reports, the tenth one will respond with an error indicating that the database connection limit has been reached.  The database connections used by the reports aren't released until after the application is closed.  The application is designed for a secure environment that prohibits the non-administrative user from accessing the systems desktop, so asking the user tor restart the application after 10 reports isn't a viable option.
    I have checked and database connection pooling is turned off for the SQL Anywhere 16 driver.
    I have been digging on this for a few days and have tried adding code in the FormClosed event to close and dispose of the Report Document as follows:
    ReportDocument reportDoc= (ReportDocument) crystalReportViewer1.ReportSource;
    reportDoc.Close();
    reportDoc.Dispose();
    GC.Collect();       // Force garbage collection on disposed items
    I have also tried the following (as well as maybe 20 or so other permutations) trying to fix the issue with no success.  
    ReportDocument reportDoc= (ReportDocument) crystalReportViewer1.ReportSource;
    foreach (Table table in reportDoc.Database.Tables)
         table.Dispose();
    crystalReportViewer1.ReportSource = null;
    reportDoc.Database.Dispose();
    reportDoc.Close();
    reportDoc.Dispose();
    reportDoc = (ReportDocument)crystalReportViewer1.ReportSource;
    GC.Collect();       // Force garabe collection on disposed items
    Any ideas or suggestions would be greatly appreciated.  I have been pulling my hair out on this one!

    Hi Ludek,
    Thanks so much for the quick reply.  Unfortunately I did not have time to work on the reporting project Friday afternoon, but did a quick test this morning with some interesting results.  I'm hoping if I describe what I'm doing, you can show me the error of my ways.  This is really my first major undertaking with Crystal Reports.
    If I simply load the report, then close and dispose, I don't hit the limit of 10 files.  Note that I do not logon manually in my code as the logon parameters are all defined within the reports themselves.  The logon happens when you actually view the report.  Loading the report doesn't seem to actually log in to the DB.
    What I did was create a very simple form with a single button that creates the WinForm class which contains the Crystal Viewer.  It then loads the report, sets the ReportSource property on the CrystalReportsViewer object contained in the WInForm and shows the report. The report does show correctly, until the 10 reports limit is reached.
    The relevant code is shown below. More than I wanted to post, but i want to be as complete and unambiguous as possible. 
    This code displays the same behavior as my earlier post (after 10 reports we are unable to create another connection to the DB).
    // Initial Form that simply has a button
      public partial class SlectReport : form
            public SelectReport()
                InitializeComponent();
            private void button1_Click(object sender, EventArgs e)
                ReportDocument rd = new ReportDocument();
                ReportForm report = new ReportForm();
                try
                    rd.Load(@"Test.rpt");
                    report.ReportSource = rd;
                    report.Show();
             catch (Exception ex)
                  MessageBox.Show(ex.Message);
    // The WinForm containing the Crystal Reports Viewer
        public partial class ReportForm : Form
            public ReportForm()
                InitializeComponent();
            private void Form1_Load(object sender, EventArgs e)
                this.crystalReportViewer1.RefreshReport();
                this.FormClosed += new FormClosedEventHandler(ReportForm_FormClosed);
            void ReportForm_FormClosed(object sender, FormClosedEventArgs e)
                ReportDocument rd;
                rd = (ReportDocument)crystalReportViewer1.ReportSource;
                rd.Close();
                rd.Dispose();
            public object ReportSource
                set { crystalReportViewer1.ReportSource = value; }
    Again, any guidance would be greatly appreciated. 

  • Crystal Reports Server 2008 Repository Database

    We've configured a new CRS 2008 server and have a "failed reports" report that worked in the old Crystal Enterprise 10 environment.   It would query the repository database CMS_InfoObjects table and report failed reports for the day.
    With the new version of Crystal Reports Server 2008 and the new repository database, the ObjName field and others in this table are now varbinary fields.
    How can we query this field like we did with the old version to get our "failed reports" report to work?
    I can't really find any informatin on the structure, etc. or how to query the repository database.

    Unfortunately, you can't query it directly from a report.  You have to use the query language that comes with the SDK.
    I'm not sure whether CRS comes with the same Query Builder tool that comes with BusinessObjects, but if it does you can access it through a url like this: http://<server name>/AdminTools/querybuilder/ie.jsp.
    To get the list of failed reports, you would run something like this query:
    Select SI_NAME, SI_ID, SI_CREATION_TIME
    from CI_INFOOBJECTS
    where SI_INSTANCE = 1
      and SI_SCHEDULE_STATUS = 3
      and SI_CREATION_TIME >= '2010/08/19,00:00:00'
    Unfortunately, there is no way to automate this with the Query Builder.  You would have to manually run this query every day to get the information you're looking for.
    If you can write code in Visual Studio or Java (or have someone available who can do this), this type of thing is not difficult to do in the SDK.  You could handle it a couple of ways:
    1.  Create a program that loads the information to a table in your database and then run a report in CRS that will show that data.
    2.  Create a program that loads the data into memory and runs a report off of the in-memory data.
    Either type of program could be set to run under the Windows Scheduler to automatically provide the information.
    -Dell

  • One page "report" from an AppleWorks database???

    I'm wondering if it is possible to create a one-page "report" (layout?) that can display some summary values calculated from my database. I am currently using a database to keep track of the students in a small school, and I would like to be able to print up a page that shows each classroom number with teacher name, followed by a number of students in that class. The database records are the students, and each record includes a class number and teacher name. I feel like I have a decent understanding of how AppleWorks databases work, but while this seems like a reasonable thing that I would like to do, I can't think of how to go about doing it. I'm starting to think that maybe I have to have a second, separate database for the teachers and track the number of students per class that way. But AppleWorks doesn't have a way of sharing information across two databases, does it?
    Ugh.

    Hi Terry,
    I'm wondering if it is possible to create a one-page "report" (layout?) that can display some summary values calculated from my database. I am currently using a database to keep track of the students in a small school, and
    It should be possible, assuming I understand the question.
    I would like to be able to print up a page that shows each classroom number with teacher name, followed by a number of students in that class.
    Do you want a list of some of the students in the class, or do you want a number showing how many students are in that class? My assumption is the second.
    The database records are the students, and each record includes a class number and teacher name.
    As you say "A" class number and (A) teacher name, I'm assuming that there is only one teacher's name associated with each student, and only one class number associated with each student (and I suspect that all students with the same Teacher have the same class number).
    AppleWorks doesn't have a way of sharing information across two databases, does it?
    No.
    Given the above assumptions, here's a plan:
    Existing fields (ALL Text type fiends):
    'Name' (containing student's name)
    'Room' (containing class number)
    'Teacher' (containing teacher's name)
    New fields (ALL Summary type fields. Formula given after field name):
    'Namesum' COUNT('Name')
    'Roomsum' 'Room'
    'Teachsum' 'Teacher'
    Make a new Blank Layout.
    Insert Part... Subsummary when sorted by 'Teacher'
    Insert Part... Header
    Insert the three new Summary type fields onto the new layout and place them in a horizontal line in the Subsummary part.
    Edit the labels, then place place them in the Header part and directly above the field to which each applies. Add any other information you want in the header using a text frame.
    Adjust the part boundary to give some white space below the three fields.
    Drag the Body boundary up to the boundary above it to delete the body part from the layout.
    Return to Browse mode.
    To see the results:
    Sort the database by Teacher.
    Check Page View in the Window menu.
    Regards,
    Barry

  • Crystal report "Failed to load database information" error after publish

    I have seen similar questions, but none of the answers seem to apply to my situation.
    I am upgrading an older web application to Visual Studio 2013, using the SAP Visual Studio Crystal Reports tools. Everything works great until I publish.
    I have two sorts of reports: Some that export to Excel, and some that export to PDF. All work fine within Visual Studio. However, when I publish, the reports that should go to PDF give me the following error.
    Failed to load database information.Error in File [Report Name] {GUID}.rpt
    I have seen several posts that indicate that this could be a 32/64 bit issue. I am using a newer 64 bit SQL database, and this is an old application. I have it set to Any CPU. However, since the reports work fine in Visual Studio, I don't see how this could be the issue.
    Any other ideas?
    Thanks,
    Geoff Callaghan

    Hi Geoff
    This is definitely not due to the export type. Rather it will be due to a db issue of some sort. My suspicion is that reports that work use a different type of connection that reports that fail. E.g.; the reports that work use OLE DB, those that fail use ODBC and the ODBC datasource is 32 bit, not 64 bit(?). E.g.; check the database connections between reports that work and those that do not. And remember to also check the connections in subreports (if any).
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

Maybe you are looking for

  • Why do DNGs from my 5D Mark III look too saturated in Lightroom 4?

    I'm converting the CR2 files using the ACR 6.7 beta.  The files look fine in the Canon software (DPP).  My 10D images always looked fine... I tried using my Colorchecker Passport to generate camera/lens profiles, but that didn't help. Thanks Don

  • Org Chart 3.0 : Email address gets truncated

    Hi, In position detailed view, the email address can only handle about 23 characters. Once it goes beyond that, the email gets truncated. I tested with employee name and position name, if these names are too long, it shows something like this: Copora

  • Cisco Unity Aging Policy Not workin as intended

         HI ,       We have cisco unity connection 8.5 integrated with call manager 8.5. We face issue on the aging policy values set. Permanently delete all secure message that are older than _ days, value has been set and is not working as intended,Onc

  • ICloud/iPad photo resolution

    My iPad / iCloud settings are to store the higher quality original photo in iCloud while the iPad automatically, in the background, makes a second smaller version for local storage optimised for the iPad. This is a setting on the iPad. Does this func

  • Illustrator CS6 Freezing

    When i open it up on my imac,it lets me set a new workspace,but wont let me do anything after that,i just get the loading icon and it freezes until i force quit,anybody else having this issue or know how to resolve it without having to do a fresh ins