Crystal reports 2008: Data appears upon refresh, but not on initial open

I have an updated crystalreports.com / salesforce.com report to which I added a new subreport and an additional grouping.  The report is working fine, with one (rather major) issue: when the report is first opened, only some of the data is shown - there are ~15 columns of data, most of which populate, but some individual values, which sometimes means an entire column of data, do not appear unless the report is refreshed.
I have the original report still loaded in crystalreports.com, so that I can (and have) run both reports one right after the other; on first open, the data doesn't agree.  When I refresh the newer report, the 'lost' data appears and everything is fine.
(Makes for a tough sell, though - 'Oh, just refresh the report.')
Any thoughts as to a) what might be causing this, and b) how it might be resolved?
It is not subreport data that is being affected, just so you know - that's working beautifully; the affected fields are Standard Summaries of formula fields, and not all instances of those summaries, either, but specific ones again and again.

I have not used the 'Save Data with Report' option, and I verified that it is not selected under File / Report Options as well.  It appears to be an issue when there are too many (unknown how many that is, as of yet) results being retrieved.
In this case, the main report is a report on Activities from the start of the current year, using a Salesforce.com report, and the Subreport pulls its data directly from the Activities table (as the main report considers all of the fields to be String(255) fields, even if they are ought to be read in as Memo fields (or number)).  The link to Activities allows the Description field to be pulled in based on the Activity ID, and coming straight from the database the value is pulled in as a Memo.
If I limit the Activities to records beginning with 'A', for instance, the report runs fine; 'A - G', in this instance, retrieves too many and the error re: the database connector appears.
Edited by: prozek on Apr 22, 2010 7:53 PM

Similar Messages

  • Crystal reports 2008 Fix Pack 2.4 Release Notes

    It seems to be impossible to find any release notes for any of the fix packs. Can anyone point me to them?
    Also if it's anyone from SAP reading this why are release notes not distributed in the downloads section or a link to them. It's a ridiculous situation not being able to find them, how are we meant to know if issues are fixed we raise or about fixes we should be installing and are not even aware of.

    Filtering by Crystal Reports | Crystal Reports 2008, I see the items listed below.  I cannot find any release notes.
    Crystal Reports 2008
    Utility
    Crystal Reports 2008 Fix Pack 2.4 - Click Once
    ZIP
    50.372
    Windows
    English
    22.01.2010
    Crystal Reports 2008
    Hot Fix
    Crystal Reports 2008 SP2 - Fix Pack 2.4
    ZIP
    254.688
    Windows
    English
    22.01.2010
    Crystal Reports 2008
    Utility
    Crystal Reports 2008 Fix Pack 2.4 - Redist Install
    ZIP
    84.228
    Windows
    English
    22.01.2010
    Crystal Reports 2008
    Utility
    Crystal Reports 2008 Fix Pack 2.4 - Merge Modules
    ZIP
    117.236
    Windows
    English
    22.01.2010
    Crystal Reports 2008
    Other
    Crystal Reports 2008 SP1 - Hungarian Language Pack
    ZIP
    13.008
    Windows
    English
    04.01.2010
    Crystal Reports 2008
    Utility
    Crystal Reports 2008 Fix Pack 2.3 - Redist Install
    ZIP
    84.136
    Windows
    English
    30.12.2009
    Crystal Reports 2008
    Utility
    Crystal Reports 2008 Fix Pack 2.3 - Click Once
    ZIP
    50.292
    Windows
    English
    21.12.2009
    Crystal Reports 2008
    Utility
    Crystal Reports 2008 Fix Pack 2.3 - Merge Modules
    ZIP
    117.024
    Windows
    English
    21.12.2009
    Crystal Reports 2008
    Hot Fix
    Crystal Reports 2008 SP2 - Fix Pack 2.3
    EXE
    175.176
    Windows
    English
    18.12.2009
    Crystal Reports 2008
    Utility
    Crystal Reports 2008 Fix Pack 2.2 - Merge Modules
    ZIP
    114.168
    Windows
    English
    03.12.2009

  • Crystal Reports XI  Dates appearing in US format instead of UK Settings

    Hi,
    When I am running reports from my java Web Application using crystal reports XI,  the dates are being displayed as mm/dd/yyyy even though the regional settings are set to dd/mm/yyyy and the date format of the reports is set to use System Default Short Format.
    The database used is Oracle 9i.
    Any idea what should I change in the configuration to make the dates appear as  dd/mm/yyyy?
    Thanks.

    Hi Again,
    In the report, I put the date format as the system default short date format so that it takes the date format from the server.
    I tried the following:
                Locale x = new Locale(req.getHeader("Accept-Language"));
                clientDoc.setLocale(x);
    but I got the error:
          Invalid parameter value: exceeds the Min or Max or conflicts with existing value or edit mask---- Error code:-2147217382 Error code name:failed
    I get this when I am checking if it has a sub report using:
    IStrings subrepstrings = clientDoc.getSubreportController()
                        .querySubreportNames();
    Do u know how can I solve thiis?

  • Crystal Reports 2008 Formula in Cross-Tab Error Not Supported

    I have a crosstab that was created in Crystal XI and when I opened the report in Crystal 2008 I receive an Error "Not Supported" when I removed the fromula that was in the Crosstab the report displayed. The following is the formula that is within the crosstab:
    If {VWR_PPS_VISIT_SCHEDULE.COHORT_NAME} = '(No Cohort)'  THEN
        If DistinctCount({VWR_PPS_VISIT_SCHEDULE.COHORT_NAME},{VWR_PPS_VISIT_SCHEDULE.PROPOSAL_VERSION_ID}) >1 then
             {VWR_PPS_VISIT_SCHEDULE.COHORT_NAME}&" "&{VWR_PPS_VISIT_SCHEDULE.VISIT_NAME}
        else
            ""&" "&{VWR_PPS_VISIT_SCHEDULE.VISIT_NAME}
    else
        {VWR_PPS_VISIT_SCHEDULE.COHORT_NAME}&" "&{VWR_PPS_VISIT_SCHEDULE.VISIT_NAME}
    As I mentioned the formula works perfectly in Crystal XI but not Crystal 2008 which no sese at all.  We are preparing to migrate from Crystal XI to Crystal 2008 and if this is an issue we may need to but upgrading off.
    Any help with this would be gratly appreciated.
    Thanks
    Edited by: jackie2009 on Oct 9, 2009 3:41 PM

    Try adding brackets around the If statements.e.g.
    If {VWR_PPS_VISIT_SCHEDULE.COHORT_NAME} = '(No Cohort)' THEN
    If DistinctCount({VWR_PPS_VISIT_SCHEDULE.COHORT_NAME},{VWR_PPS_VISIT_SCHEDULE.PROPOSAL_VERSION_ID}) >1
    then {VWR_PPS_VISIT_SCHEDULE.COHORT_NAME}&" "&{VWR_PPS_VISIT_SCHEDULE.VISIT_NAME}
    else ""&" "&{VWR_PPS_VISIT_SCHEDULE.VISIT_NAME}
    else {VWR_PPS_VISIT_SCHEDULE.COHORT_NAME}&" "&{VWR_PPS_VISIT_SCHEDULE.VISIT_NAME}

  • LiveCycle Form data appearing in Preview but not in Output

    Hello!
        We have forms that were converted from Adobe Central to Adobe LiveCycle. We're testing a form now to ensure it is working properly. When looking at the form in Preview PDF we can see the data from the XML source display on the form. However, when we run our process to generate the form, the data does not appear. Any thoughts as to why the data is not appearing when we run our process but appears in the preview?
    Thanks,
    Wendy

    Hi Shreesh,
    Please check  follow the below points.
    1. For which info providers you are not getting data at report level check the reporting availalabilty at manage screen.
    2. Also check  whether Identifation (assign) for primary key characteristics for all the infocubes has been done .
    Ex: as you are loading the data for FI cubes, 0account will become one of the primery key characteristic to be Identified as a common object.
    4. Create Queries seperately on the infocubes for which you are not getting data instead of creating report on multiprovider. So that you can get some clue.
    Thanks

  • Hide Link Button Image used in Crystal Report 2008 while printing

    Hello Experts,
    I am using Link Button of SAP B1 in Crystal Report 2008 which works perfectly. But when i am trying to export it, i am also getting the image of Link Button.
    Is there a way to hide the image while printing?
    Thanks
    Shiv

    hi Piyush,
    there are some changes in the cr viewer between 3.1 to 4.x. can you please upgrade the reports that are not working to webelements 2.47 which was built for 4.0.
    let us know how this works.
    -jamie

  • Crystal Report 2008 - Cross tab in subreport doesn't expand horizontally

    Hello,
    i'm migrating all my company's reports from crystal report X to crystal report 2008.
    And i'm facing the following issue:
    when a sub-report contains a cross-tab that is too large for one page, in crystal report X a second horizontal page is generated, but in Crystal report 2008 the second horizontal page is not visible.
    Is it a known bug, is there a patch to install?

    Hi Abhilash,
    thank you for your answer, but this workarround does not works in my case.
    My main report is just a container for multiple subreports and some of them contains crosstab that can grow on several pages horizontally and vertically.
    For example i have some crosstab that can span on more than 5 pages vertically and on 2 pages horizontally.
    I tried to create an empty cross tab that span on 2 horizontal pages in the main report, and to mask it. That works for the first vertical page of the subreport but only for this one. Moreover if the first page of the crosstab contained in the subreport does not span horizontally, this solution create an unwanted empty page.

  • Crystal Reports 2008 Fix Pack 2.8 file is corrupt

    Hi,
        I tried to download and install the Crystal Reports 2008 Fix Pack 2.8 but each time the extractor tell me that the file is corrupt.
    [https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/bobj_download/main.htm]
    Thank you

    Sent the the upload team also.
    Try the MSI package to see if that works for you.
    And please post new issues in new posts. This one if fixed.
    MSM's have been re-uploaded.
    Thank you
    Don
    Edited by: Don Williams on Jun 18, 2010 9:04 AM

  • Failed to Install the Crystal Reports 2008

    Post Author: cechow
    CA Forum: Crystal Reports
    Hi,
    I am facing some error message when installing the Crystal Reports 2008 that I have purchased. I am currently working on a Windows XP Pro SP2, 1 GB RAM, 60 GD Free Space to install the Crystal Reports but failed. The error stated on the Crystal Reports installation screen is "Crystal Reports 2008 Setup has Failed".
    Thanks.
    Adrian

    Post Author: cechow
    CA Forum: Crystal Reports
    Basic Template
    Product: Crystal Report 2008
    Version:
    Patches Applied: I'm not sure what patches need to be installed
    Operating System(s): Windows XP Professional SP2
    Database(s): SQL Server 2000 sp3a
    Error Messages:  Failed to INstall the Crystal Reports 2008.Steps to Reproduce: When I entered the CR disc in the CD ROM, there was no auto-run, then i decided to browse into the CD and execute the Setup.exe which then prompt the error above. Please advise.Is there some Pre-requisites that I need to install, any JRE or some other application?

  • How to use CRAXDDRT.DLL in crystal report 2008?

    Hello All,
    We have purchased Crystal report 2008 Full software.
    We need to insert BLOB field into Crystal report 2008 at runtime using *CRAXDDRT.DLL*.
    How can I insert OLE object and bind it at Runtime using crystal report 2008?
    Is it possible to insert Ole Object runtime using crystal report 2008? If yes how and if not is there alternative to perform this job.
    Please let me know your feedback.
    Thanks

    CrxDDrt.dll is only provided in order for the Crystal Reports designer in the .NET IDE.
    1) You are not licensed to use this CraxDDrt.dll
    2) Even if you were, in previous versions of CR, there were licensing implications to using the craxDDrt.dll (read $$)
    3) Once your project would be done, using CR 2008, you would not be able to distribute the runtime as there is no CR MSM or MSI that contains the craxDDrt.dll and it's supporting runtime.
    In your original post you say:
    "I need to show Word and Pdf file in to Crystal report 2008 using CRAXDDRT.DLL";
    I do not understand why you'd need to do this using the craxddrt.dll? You should be able to insert a BLOB field using the RAS SDK for .NET and CR 2008. Now, one hting you will have to keep in mind. If you insert a multipage .doc or .pdf file into the report, you will only get the first page of that document. I suggest you try this in the CR designer first. Always remember that if you can not do a certain thing in the designer, you will not be able to do it at runtime either. Giving all the limitations above, if you are still interested in doing this using RAS, let me know and I'll set you up with some resources to get you going.
    Ludek

  • Compatability of Crystal Reports 2008 with BOE 11.5 - (.rpt output)

    Hi -
    I am planning an upgrade to Crystal Reports 2008 to take advantage of capabilities of Crystal Reports Viewer 2008 to modify parameters in reports (ex: posting reports to a shared drive for users to open and modify parameters).
    In order to have this functionality in Crystal Reports Viewer (2008), I must create the report in Crystal Reports 2008. My question is: If I create the report in Crystal Reports 2008 and schedule the report to run on Business Objects XI.5, will the users be able to modify parameters in the report file output?
    Thanks

    Hello,
    You need BOE XI 3.0 or later for full compatibility with Crystal Reports 2008. The parameters panel will not be displayed in any earlier version.
    Also, some Crystal 2008 syntax is not supported in versions of BOE earlier than BOE XI 3.0. Use of such functions will result in report failures when run in older versions of BOE. For example the function hasvalue() is new to Crystal 2008 (checks for empty values in fields) and caused report failure in BOE XI R2 when published.
    Ravi

  • Fields in Stored Procedure does not appear in Crystal reports 2008.

    hi,
    I am now using crystal reports 2008 evaluation copy for 30 days. I am trying to create a stored procedure with parameter, here is my sample Stored Procedure code;
    DELIMITER $$
    DROP PROCEDURE IF EXISTS `puerto`.`SP_FindEmployees`$$
    CREATE DEFINER=`root`@`localhost` PROCEDURE `SP_FindEmployees`(SIDNo VARCHAR(10))
    BEGIN
         SELECT * FROM employees WHERE IDNo=SIDNo;
        END$$
    DELIMITER ;
    when i try to call the procedure in sqlyog here is my sample code;
    CALL sp_findemployees('0000000001')
    it is successfull, but when i try to  connect it with crystal reports 2008 I got no fields in my stored procedure andi got this error message ;
    "Database Connector: 'HY00:[MySQL][ODBC 3.51 Driver][mysqld-5.1.33-community]incorect number of arguments for procedure puerto.sp_findemployees; expected 1, got 0 [Database vendor code: 1318]"
    CR2008 was not asking a parameter values.
    But when I try using stored procedure that i've made in MSSQL, CR2008 asking parameters and succefully created the reports needed.
    My Objective is to make a stored procedure  in MySQL by using select statement and filter it with parameter(s) that I will pass and CR2008 will use this stored procedure.
    i also try the view with this code below and it was successfull in CR2008.
    DELIMITER $$
    DROP VIEW IF EXISTS `puerto`.`ep_employees`$$
    CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `ep_employees` AS (SELECT `employees`.`IDNo` AS `IDNo`,`employees`.`FullName` AS `FullName` FROM `employees`)$$
    DELIMITER ;

    hi,
    Crystal Reports 2008 and MySQL 5 , ODBC driver 3.5 and ODBC driver 5.1.
    I use ODBC connector 3.5 because I got errors in ODBC drivers in 5.1.
    Do you have step by step procedure for creating add command dialog box?
    I try creating the add command dialog box
    here's my sample sql statement i don't know if its correct because no data appearing in my crystal report
    Select * from employees where idno=@IDNo
    in Command Parameter Dialog Box
    Parameter Name = @IDNo
    Prompting Text = @IDNo
    Value Type = String
    DefaultValue = 0
    thanks!

  • Crystal Reports 2008 failed to retrive data, and instead deleted it.

    I have been using crystal reports 2008 for the past year or so with our billing software through an OBDC data source. I was using xp pro sp3. However I recently upgraded to a new computer running xp pro sp3 as well, and now I am having some serious issues.
    When I try to connect to a data source in the database expert, it shows all the tables, and then the field explorer shows the fields, but when I actually try to brows the data, view a preview, verify the database, or refresh an old report it gives me an error and DELETES the .dat file that the field was located in. I am so glad I have regular backups to restore too, because pulling a report nuked 5 .dat files.
    The errors I am getting are as follows:
    "Failed to retrieve data from database."
    Clicked ok
    "Failed to retrieve data from database."
    Clicked ok
    "Database Connector Error: 'HY000:[Pervasive][ODBC Client Interface][LNA][Pervasive][ODBC Engine Interface][Data Record Manager]The file cannot be created with Variable-trail Allocation Tables (VATs)(Btrieve Error 105)'"
    Clicked ok
    "Failed to retrieve  data from database.
    Details:HY000:[Pervasive][ODBC Client Interface][LNA][Pervasive][ODBC Engine Interface]Unable to open table: <nameoftable>"
    Click ok
    and Crystal stays open but has just deleted the .dat file that the table was located in. It will still show the fields but  no data. Trying to open the other software leads to an error "missing <name of table>.dat" It then has to be restored from a backup.
    I have tried updating crystal as well as fully uninstalling it and reinstalling it, we have created a new ODBC connection, and cloned the database for testing purposes. The same thing occurs with the new database and ODBC data source.
    We have no other computers, except my old one that has crystal reports on it. I have tried the old computer again and it is working fine.
    Does anyone have an suggestions? This is pretty critical. Thanks in advance.
    Edited by: Russellk on Jan 13, 2010 8:27 PM

    Hello, you could try turning on ODBC tracing to see if it logs anything. It's a pain to get going but here's how.
    Go to ODBC Admin, Click on the Tracing tab and create a log file and save. Don't start tracing yet. Close the ODBC admin and then re-open it and then turn tracing on. You may have to do this a few times to get it working.
    Once it's tracing then open CR and try the demo data. Then close the report, log off, log onto the real data and do the same with a new report. You'll see a bunch of ODBC API's but there may be one or 2 that don't look right or errors may be logged compared to the DEMODATA.
    Another suggestion is it may not be your PC doing the deleting. Maybe the Server thinks you have infected the data files and it's deleting them. Have a look in anti-virus quarantine logs on the server to see if it's doing the nasty....
    Check the trust between your PC and the server.
    I've also seen this type of odd behaviour with corrupted Profiles. Check with your IT guys on creating a new one for you, it's apain because you loose everything on your work station.
    What happens if you log on from another PC using your account? Does that also delete the files? Or get someone else who it does work for log into your PC, does that work? If so it may be your Profile is either not trusted or it's been corrupted.
    Good luck
    Don

  • Crystal Reports 2008 crashes with blanked out areas when downloading data

    We have a pc installed with Crystal Reports 2008 v1 SP2, which is used for report creation, but after a few minutes of downloading data from the server to populate the report, the report crashes with black areas instead of data in the report.  Please can anyone offer possible solutions?
    Pc: workstation
    Os: Microsoft Windows XP Professional 32 bit
    Processors: 1 Intel Core(TM) i5 CPU 650 @ 3.20 Ghz
    Total Memory: 3264 Mb
    Total Hard Drive: 298 Gb
    Display 1680 x 1050 pixels 65536 colours]
    Display Adapters: Microsoft 4.0.5733.0
    driver date: 2-28-2007
    Crystal Reports version: 12.1.0.883
    Crystal Reports 2008 SP2
    Oracle in OraHome111
    file version: 11.1.0.6.0
    driver_ODBC_Version: 03.51
    connects to remote server on site with Oracle 11g database, via above ODBC driver.
    Many thanks, any ideas would be appreciated!
    David

    Hi David,
    I've seen this before, your Video driver is out dated and you need to update it. Typically the makers of the mother board or video card, which ever one you are using, will have updates for your specific OS. Appears you are using the default Window generic video driver which may not support what CR requires or you have an older usp10.dll. You will likely get a new one if you install Windows XP Service Pack 3.
    Also, Crystal Reports version: 12.1.0.883 is SP 1 and not SP 2., second number is the Service Pack, 12.x.x.x.
    Download SP 4 and see if that may help:
    https://smpdl.sap-ag.de/~sapidp/012002523100009989492010E/cr2008_sp3_fullbuild.zip
    https://smpdl.sap-ag.de/~sapidp/012002523100008782452011E/cr2008sp4.exe
    Or incrementally:
    https://smpdl.sap-ag.de/~sapidp/012002523100009038092009E/cr2008win_sp2.exe
    https://smpdl.sap-ag.de/~sapidp/012002523100007123572010E/cr2008_sp3.exe
    https://smpdl.sap-ag.de/~sapidp/012002523100008782452011E/cr2008sp4.exe
    And you may need SP 3 or if you want to start off clean download the full build of SP 3 and then SP 4. Requires the keycode so make sure you have it, we can't give you a new one.
    Don

  • Date Format is not Working in Cross tab Crystal report 2008

    Hi,
    I have developed an application ASP.Net c#
    in Framework 3.5 with crystal report 2008 with service pack 5.
    in my crystal i used cross tab to show the grid records. one of the data having the data type as date time after launching the report, when i export the report with option "export to excel (data only)" and check the format of the date value in excel it show the general string
    if i place that data in any other location other than cross tab then it reflects the format what i give in report design. but when the control is in cross tab
    its not effect
    how to solve this!

    And tweeted
    - Ludek
    Senior Support Engineer
    AGS Product Support, Global Support Center Canada
    Follow us on Twitter

Maybe you are looking for

  • Printing in SAP Script

    Hi Experts, I am creating a Purchase order (ME21) for a one time  vendor (Dummy PO)created and make a printout on Script that shows my material master that data not provided by me and the data provided by me is not come on printout at the same time I

  • Resetting Leopard to just opened settings

    Hey, so my father just bought a new MacBook pro. I opened the box and was the first to use it. I completed the setup that is required when first using Leopard entering my fathers name for the admin, adding a password for him, etc. He didn't tell me h

  • Pls, help. Activation lock with old ID not my ID when update ios 7.0.4

    i bought old iphone 4s with ios 7.0.3, i signed in my ID icloud in setting. i update ios to 7.0.4. I get activation lock with old id not my id. I can't pass activation lock my iphone, pls...help me

  • Background noise with i pod dock connection

    Just wondering if anyone has had problems with a background noise with the bottom dock connection even when i'm not having it playing any music. and it doesn't matter if its in my truck or at my house ever dock connector piece of equipment has had th

  • Turning Cat Fur White?

    Hello all, I'd like to ask if anyone could assist me in learning how to turn cat's fur white ... while maintaining the dark areas, such as the nose, eyes, etc. I do know Photoshop fairly well ... but still learning LOADS of stuff I never knew about,