Report missing some data from dataset

Hi
I populate my report using a dataset and most of the time the report generation is successful.
but after a while (3-5 reports) I start getting missing data in the report. Either the png blobs do not get printed or some other string fields. Usually the same strings are missing.
If I continue generating reports after that I get "report could not be submitted for background processing" error or since I use some fields for formatting I get errors corresponding to those formulas where I try to use the missing fields.
I have checked the dataset before SetDataSource and it is complete, images and all.
Is there some way to restart the embedded crystal reports thread/process programmatically from c#? if the problem is because of memory fragmentation, this might solve the problem.
I use crystal reports basic 2008 for visual studio 2008.
Kind regards
//Gunnar

In a memory intensive environment like this, it is possible that we will run into these issues. The thing is - as I understand these tings, Microsoft does not let a 3rd party just go out and use the dataset. E.g.; the Crystal Reports engine is forced to make a copy of the dataset and use that. So, now you've chewed up more memory again. It would be interesting to do four things;
1) monitor the memory and see if there is a particular value at which it is more likely to get the issue
2) take out the report and dataset into another sample app that is not using these x-rays and see if you duplicate the issue there
3) see if CR 2008 (12.x) handles the memory better. As these versions go, there are always improvements. I am not aware of a particular "thing" done to the report engine or database engine in this respect, but it may be worth trying. An eval of CR 2008 can be downloaded from here:
http://www.sap.com/solutions/sapbusinessobjects/sme/freetrials/index.epx
Once you have installed the above, check the version (Help | About). If the version is not 12.3.0.601, download SP 3 from here:
https://smpdl.sap-ag.de/~sapidp/012002523100007123572010E/cr2008_sp3.exe
4) rather than using datasets, would it be possible to write the data into some database temp table and consume the data from there?
Ludek

Similar Messages

  • One report to pull data from SQL or DB2

    Hi Guys,
    First post here.  I have scoured the internet using our good friend google for answers and have come up empty.  I hope someone can help me here!
    Some Info: Crystal XI R2, Visual Studio 2005, Ms SQL Server 2005, DB2, VB.NET
    What I am trying to accomplish is using one report to pull data from either SQL 2005 or DB2.
    The problem I get is if the report is configured to pull data from SQL 2005, I cannot change it using the code below to pull data from DB2.  The SQL Report uses the Microsoft OLEDB Provider.  The DB2 report uses the IBM DB2 UDB for iSeries IBMDA400 OLEDB provider.  When I quickwatch the oCRTable logon information, it seems to retain the other database's info.
    Any ideas?
    My code:
        Private Sub LoadRpt(ByVal rpt As String)
            Try
                Dim strReport As String
                Dim crReportDocument As New CrystalDecisions.CrystalReports.Engine.ReportDocument
                Dim rpt As CrystalDecisions.CrystalReports.Engine.ReportDocument
                Dim oCRTable As CrystalDecisions.CrystalReports.Engine.Table
                Dim oCRConnectionInfo As New CrystalDecisions.Shared.ConnectionInfo()
                strRptNm = String.Format(".rpt", rpt )
                strReport = String.Format("\{1}", Server.MapPath("Reports"), rpt )
                crReportDocument.Load(rpr)
                '   check to make sure report is loaded; if not, then do nothing
                If crReportDocument.IsLoaded Then
                    oCRConnectionInfo.DatabaseName = ConfigurationManager.AppSettings.Item("DataBase")
                    oCRConnectionInfo.ServerName = ConfigurationManager.AppSettings.Item("Server")
                    oCRConnectionInfo.UserID = ConfigurationManager.AppSettings.Item("Profile")
                    oCRConnectionInfo.Password = ConfigurationManager.AppSettings.Item("Password")
                    For Each oCRTable In crReportDocument.Database.Tables
                        oCRTable.LogOnInfo.ConnectionInfo = oCRConnectionInfo
                        oCRTable.ApplyLogOnInfo(oCRTable.LogOnInfo)
                        oCRTable.Location = oCRTable.Location
                    Next
                    For Each rpt In crReportDocument.Subreports()
                        For Each oCRTable In rpt.Database.Tables
                            oCRTable.LogOnInfo.ConnectionInfo = oCRConnectionInfo
                            oCRTable.ApplyLogOnInfo(oCRTable.LogOnInfo)
                            oCRTable.Location = oCRTable.Location
                        Next
                    Next
                ... other code ...
                End If
            Catch ex As Exception
                ... other code ...
            End Try
        End Sub
    Edited by: Mace Windu on Feb 7, 2009 7:55 AM
    Edited by: Mace Windu on Feb 7, 2009 7:56 AM

    David,
    Your suggestion worked to near perfection.  The only problem was that if I configured the datasource locations of the report and sub reports in CR to use the SQL ODBC, the .net program would successfully log in using the DB2 info but had a problem reading the data.  If I configured the datasource locations of the report and subreports in CR to use the DB2 ODBC, everything worked!  Thanks for the advice. 
    The force is strong with you.
    Mace

  • Report not displaying data from one of the infoproviders

    Hi Experts,
    Issue: Report not displaying data from one of the infoproviders
    I have a report 'ReportA' which has multiprovider MP1 as the source.
    MP1 has two Infocubes IC1, IC2 in its design.
    Now, when i execute the report, data from IC1 is displayed. But no data from IC2 is displayed.
    Is there a setting i need to enable in MP1 ? or is there anything else that needs to be enabled ?
    Please reply.
    Regards,
    Suraj S Nair

    Hi All,
    When i display data directly from the multi provider, without any restrictions, i cannot view the data from infocube IC2.
    I feel its not an issue with the Query. It must be a problem with the setting in the Multiprovider MP1.
    Infocube IC2 is a copy of Infocube IC1. Multiprovider MP1 first only had IC1 in its design. It was recently IC2 was also included.
    I checked the Characteristics, all of them are assigned corectly.
    Now, this issue sure has something to do wiht the setting of Multiprovider or please correct me if wrong.
    Regards,
    Suraj S Nair

  • Import some data from one oracle to another...

    Hi Guys,
    we have 2 oracle database servers on 2 different machines with schema.
    I want to import some data from a specific table from one oracle into another oracle.
    what is the way to do that.
    Please help in details
    Imran Baig

    Hi,
    Thanks for the reply.
    Tables are already created in both of the oralce databases only the data varies. I just have to import only few records from one oracle to another with the same user name and table already existing.
    I have tried using database link. I can view records from the other oracle database but as soon as i write an insert command oracle gets held. I cant do anything.
    Is there any other way?
    Imran

  • How to export some data from the tables of an owner with integrity?

    Hi to all,
    How to export some data from the tables of an owner with integrity?
    I want to bring some data from all tables in a single owner of the production database for development environment.
    My initial requirements are: seeking information on company code (emp), contract status (status) and / or effective date of contract settlement (dt_liq_efetiva) - a small amount of data to developers.
    These three fields are present in the main system table (the table of contracts). Then I thought about ...
    - create a temporary table from the query results table to contract;
    - and then use this temporary table as a reference to fetch the data in other tables of the owner while maintaining integrity. But how? I have not found the answer, because: what to do when not there is the possibility of a join between the contract and any other table?
    I am considering the possibility of consulting the names of tables, foreign keys and columns above, and create dynamic SQL. Conceptually, something like:
    select r.constraint_name "FK name",
    r.table_name "FK table",
    r.column_name "FK column",
    up.constraint_name "Referencing name",
    up.table_name "Referencing table",
    up.column_name "Referencing column"
    from all_cons_columns up
    join all_cons_columns r
    using (owner, position), (select r.owner,
    r.constraint_name fk,
    r.table_name table_fk,
    r.r_constraint_name r,
    up.table_name table_r
    from all_constraints up, all_constraints r
    where r.r_owner = up.owner
    and r.r_constraint_name = up.constraint_name
    and up.constraint_type in ('P', 'U')
    and r.constraint_type = 'R'
    and r.owner = 'OWNERNAME') aux
    where r.constraint_name = aux.fk
    and r.table_name = aux.table_fk
    and up.constraint_name = aux.r
    and up.table_name = aux.table_r;
    -- + Dynamic SQL
    If anyone has any suggestions and / or reuse code to me thank you very much!
    After resolving this standoff intend to mount the inserts in utl_file by a table and create another program to read and play in the development environment.
    Thinking...
    Let's Share!
    My thanks in advance,
    Philips

    Thanks, Peter.
    Well, I am working with release 9.2.0.8.0. But the planning is migrate to 10g this year. So my questions are:
    With Data Pump can export data just from tables owned for me (SCHEMAS = MYOWNER) parameterizing the volume of data (SAMPLE) and filters to table (QUERY), right? But parameterizing a contract table QUERY = "WHERE status NOT IN (2,6) ORDER BY contract ":
    1º- the Data Pump automatically searches for related data in other tables in the owner? ex. parcel table has X records related (fk) with Y contracts not in (2,6): X * SAMPLE records will be randomly exported?
    2º- for the tables without relation (fk) and which are within the owner (MYOWNER) the data is exported only based on the parameter SAMPLE?
    Once again, thank you,
    Philips
    Reading Oracle Docs...

  • My iPad air is missing some apps from my phone. It keeps saying, " there is not enough storage available to download..."

    My iPad air is missing some apps from my phone. It keeps saying, " there is not enough storage available to download...." I purchased additional storage twice, my device now shows 18GB free of a total 25GB, and still I cannot download apps I've had for yrs

    iCloud space is for backup only.
    You need more local storage; free up space on iPad:
    Settings>General>Usage>Storage>Delete what is not needed to free up space on iPad.

  • If the connecting fields are missing the data from knvh should be u00BBnullu00AB

    Could you help me I would like to have all fields from kna1 (if the connecting fields are missing the data from knvh should be »null«)in following code
    select * from kna1 .
    select * from knvh where kunnr = kna1-kunnr and vkorg = '0200'.
      itab-mandt = kna1-mandt.
      itab-stceg = kna1-stceg.
          itab-hkunnr = knvh-hkunnr.
          itab-datab = knvh-datab.
          itab-datbi = knvh-datbi.
        append itab. clear itab.
      endselect.
    endselect.

    HI,
      use the following code
    select * from kna1 into table it_kna1.
    if sy-subrc = 0.
    select * from knvh into table it_knvh
    for all entries in IT_kna1
    where kunnr = it_kna1-kunnr
       and vkorg = '0200'.
    if sy-subrc = 0.
    loop at it_kna1 into wa_kna1.
    itab-mandt = wa_kna1-mandt.
    itab-stceg = wa_kna1-stceg.
    loop at it_knvh into wa_knvh where kunnr = wa_kna1-kunnr.
    itab-hkunnr = wa_knvh-hkunnr.
    itab-datab = wa_knvh-datab.
    itab-datbi = wa_knvh-datbi.
    append itab.
    clear itab.
    endloop.
    endloop.endif.
    endif.
    I hope this solves your problem
    Regards,
    Vara

  • Using crystal report to extract data from Audit Log

    I have a customised form which contains main fields (i.e 20 fields) and when a field is changed, it's being recorded in the audit log.
    Would it be possible to use Crystal Report to extract data from the Audit Log? Ideally, i would like the report to show me all the latest field values in a spreadsheet type format (i.e. one field per column)
    Has anyone try this and if so, what is involved?

    An element with both text & a sub-element is a mixed-content element.
    For example ElementA is a mixed content element.
    <ElementA>
    Text
    <ElementB></ElementB>
    </ElementA>
    Extract just the Text from ElementA.
    <xsl:template match="ElementA">
    <xsl:apply-templates select="text()" />
    </xsl:template>

  • Goto: How to export some data from the tables of an owner with integrity?

    Hi to all,
    Help please: How to export some data from the tables of an owner with integrity?
    My thanks in advance,
    Philips

    Thanks, Peter.
    Well, I am working with release 9.2.0.8.0. But the planning is migrate to 10g this year. So my questions are:
    With Data Pump can export data just from tables owned for me (SCHEMAS = MYOWNER) parameterizing the volume of data (SAMPLE) and filters to table (QUERY), right? But parameterizing a contract table QUERY = "WHERE status NOT IN (2,6) ORDER BY contract ":
    1º- the Data Pump automatically searches for related data in other tables in the owner? ex. parcel table has X records related (fk) with Y contracts not in (2,6): X * SAMPLE records will be randomly exported?
    2º- for the tables without relation (fk) and which are within the owner (MYOWNER) the data is exported only based on the parameter SAMPLE?
    Once again, thank you,
    Philips
    Reading Oracle Docs...

  • I miss some pages from My Notes APP duaring backup

    I miss some pages from my NOTES APP during backup

    Hi laurenfrommotown!
    I feel like the best option for you now will be to restore from any backups you may have in order to get that note back onto your iPhone. We have an article that talks about backups and how to restore from one, and it can be found right here:
    iOS: How to back up and restore your content
    http://support.apple.com/kb/ht1766
    Keep in mind that if the note is stored on a sync server, such as Gmail or Yahoo!, it is likely to not be stored in the backup, and therefore, might not appear back onto your phone. Thanks for using the Apple Support Communities!
    Cheers,
    Braden

  • Memory full. Delete or Remove some data from C: Ph...

    Last night i deleted my messages in my inbox and sent box.
    afterwards i didn't do anything else and suddenly just stopped working. i turned it off and turned it back on and it came up with
    Memory full. Delete or Remove some data from C: Phone Memory.
    and then every so often would come up with system error
    i tried going into things like the photos or video and internet and apps pages to view them but it would just freeze and not do anything...
    i recieved some text that were sent like 3 hours before when i thought it was working and i could text back as when you go to reply you can't go into the screen to start touch screen typing....
    i finally got into the C: drive by connecting to my comp and deleting stuff even though the C: is not full it keeps coming up with this...
    i can't connect to comp and PC suite has never worked to try and update software or something and it now doesn't have the settings to go on internet itself to get updates. i have got vodafone to text me configs for internet but it says its already saved and it still doesn't work...
    any ideas peeps???

    Visit this link:
    /discussions/board/message?board.id=smartphones&thread.id=120841&view=by_date_ascending&page=1
    Throw some kudos, they mean a lot to us
    Cheers,
    DeepestBlue
    5800 XpressMusic (Rock Stable) | N73 Music Edition (Never Say Die) | 1108 (Old and faithful)
    If you find any post useful, click on the Green "Kudos" Button on the left to say Thank You...

  • N82: Memory full. Delete some data from phone memo...

    memory full. delete some data from phone memory
    i deleted all of the messages in inbox and in memory card. i also tried *#7370#. stil the memory is full. i check the phone memory status everytime i delete the messages and it will show available memory for about 30kb. when i restart the phone and check the phone memory, it will indicate that it has 0 kb left. i didn't installed any application in it.
    Message Edited by katnix on 13-Jul-2008 01:39 PM

    proper advice???? that's the advice i gave, take it or leave it. it's not for you tell me what's proper or not.
    i don't remember seeing your name in the thread above, and i don't remember you TELLING me before that you don't want to format.
    now just not to go into alot of words. there is a better way you can use to talk to people. because we are trying to help. if you like what we suggest, fine, if not, wait for another suggestion or come with one yourself.
    if you have a registery cleaner or a temp file cleaner for symbian , please be so kind to offer it's name here.
    Fear not those who argue but those who dodge

  • HT4061 I need to download some data from my phone prior to restoring it to the last backup. When connecting to itunes to download photo's it is suggesting I restore the phone. Is there a workaround?

    Hi,
    I need to download some data from my iphone prior to backing it up. When connecting to itunes it is suggesting I restore it now. I will lose quite an amount of data if I cannot find a workaround. Is there any way to get access to contacts, notes and photo's before I restore the phone?
    Phone details are: model: A1429
    FCC:       ID   BCG-E2599A
    IC            579C-E261DA
    IMEI:      013412004666230
    Cheers

    Thanks for the update. I went through the restore process and all the data I thought I would lose was there. The data must have been copied straight away before the update failed over.
    Cheers
    John.

  • Set MS Report to obtain data from programmatically created dataset?

    Greetings everyone!
    My problem: I decided that I should add a bunch of reports in the app develop for a hospital. I programmatically coded a search from a Mysql database and added a dataset (let me call it "patients_search) as usual. Then I created a DataGridView and used
    the created Dataset as its data source, this works properly, no problem.
    But as of recent, I decided that I should quit using datagrid for my reporting and use the VS 2013 inbuilt MS Report Viewer. I would like to create a report and let it pick its data from the existing dataset ("patients_search") which is created programmatically.
    So instead of binding my dataset to a datagridview, now I want to bind it to a report.
    But it seems the MS Report wants me to use a dataset created with the designer, not programmatically created dataset -and I don't want this.
    I have searched many places online, I have not seen anyone do that. I have seen some people say that it is impossible to link the MS Report to a programmatically created dataset.
    I have come here to ask for more experts help. Is there a way I can do this inside VB.NET? Please help.
    If this is not possible, then what's the other possible way of creating reports? I can't purchase Crystal Reports.
    Any help is appreciated.
    Thanks,
    Frank.
    "I can do all things through Him who strengthens me"

    Hi savedlema,
    As your issue is related to reports, I'm moving your post to Reports forum for better supports. Thanks for your understanding.
    Best regards,
    Youjun Tang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Query Report:To Retrieve Data from A/R Invoice and A/P Invoice

    Hii Experts,
          I am a new Sap B1 Trainee.I am facing a problem when retrieving data from A/R Invoice and A/P Invoice in order to track
    Expenditure and Revenue according to a Bussiness partner,
    I am using union to retrieve the information,but it is saying a error that  Error Converting Varchar to Numeric and also
    i would like to know how can i show the total final payment by reflecting Downpayments in A/R Invoice and A/P Invoice
    With Regards
    Cherry.

    Hii.
    My Sap B1 version is 8.8.1 and patch level is 20. Actully i need a scenario where i can able to show both Expenditure and Revenue of a particular bussiness partner and profit/loss in a single query report.
    I need some tips regarding this,When i am doing union i am getting conversion error converting varchar to numeric when i take
    Sum(Line Total) from OINV and Sum(line total) OPCH group by docdate and docentry and BP .
    and another scenario is how to deduct A/P downpayment or A/R downpayment from A/P invoices and A/R invoice to get the final Revenue and Expenditure ..
    Thanks & Regards
    Cherry

Maybe you are looking for

  • MSI K7N2 Delta-ILSR Wont boot up (no display no bios)

    Hi i bought a AMD Athlon XP 3200+ & MSI K7N2 Delta-ILSR. unfortuntly i can't boot it. it wont show anything on screen. i have tried anything i red in this forum (clear cmos... safe mode jumper...strip all parts...) all i get is :  blank black display

  • 0GLACCEXT_T011_HIER, DTP Error

    Hello All, Info Object: 0GLACEXT Data Source: 0GLACCEXT_T011_HIER We created transformation in BI 7.4. While executing DTP, I am getting error InfoObject, NODENAME does not exist in Version A ' ' is not a valid InfoObject name Thanks in advance. Than

  • Help with HP DeskJet 5650:  turning on automatically

    W have an HP Deskjet 5650 that is connected to my Airport Express (Firmware 6.3; running Bonjour for Windows 4.2). We use the Airport Express to print from my desktop (Windows XP SP2) and a MacBook Pro (OS X 10.4). When printing from the desktop, the

  • Unable to save as "Reader Extended" in Acrobat 9.2

    Hello, I have created a form in Acrobat 9.2. When I save the form and open it in Adobe Reader I can complete the form but I cannot save the completed form, only print. I need to save the save the form as "Reader Extended" but I cannot find the option

  • Using the Apple TV can I stream face time though to the TV the apple TV is hooked up to?

    Usung the apple TV can I stream face time though to the TV the apple TV is hooked up to?