Data not refreshing in report

Post Author: SparrowHawk
CA Forum: Data Connectivity and SQL
I'm developing a dB application in VB6 using the Developers CRXI. For the problem I'm having with the report, I've got a discrete table in the dB which holds only 1 record. The report gets it's data from that table. Before calling the report, I am saving all the data from the VB form to the table and then calling the report. Initially, the report acts fine, but if I close the report, go back to the VB form, make changes, save the data to the table once again and then reopen the report, the old data remains. More often than not I have to click the refresh button TWICE on the report in order to get the updated data to appear. Sometimes it simply won't update. I've tried to force the refresh at runtime without any luck. The save data with report is NOT checked. And, because I know an Access dB can take a bit of time to "settle", I've waited for as long as 5 minutes with the report visible before I click the refresh button. It still takes TWO tries and even then sometimes will not update. Is there a way to solve this, or must I pass the variables to the report at runtime? Since there are upwards of 100 discrete variables to pass (it's an invoice form), I'd prefer not to have to do this if at all possible.I've posted this on other forums without any replies but this can't be that hard to do. Thanks,Ken

Hi,
I do face the same issue. Live data is not getting updated in the BAM report.
My scenario: BPEL generates sensors for the response message variabe and data is inserted into JMS Topic.
Created an Enterprise Message Source to poll the data fromo JMS Topic.
In design studio -> configured Oracle BAM Enterprise Message Reciever to revceive data from Enterprise message source and send the data to BAM using Oracle BAM Insert Sink.
As mentioned in one of the post, updated below changes in Plan Setting in BAM administrator for the report.
Completion Action: Always restart on completion.
Failiure Action: Alway restart on failiore.
Max restart frequency: No limit on frequency.
Monitor Service: Oracle BAM Plan Monitor.
Did I missed any configuration to be made for the reports to get updated.
Please someone throw some light on this.
Regards
Jude.

Similar Messages

  • GL Data not available on report

    Hi All,
    I have a report which has been working fine. The report was based on cost for controlling cube which is based of WBS elements(cost).
    Now the report has been added with a column which gets its data from GL cube. I have added the 2 cubes in a multiprovider but cannot see the data for the column from GL.
    This same GL cube is being used on multiple other queries and has no problem.
    What could be the reason for the GL data not being displayed. I have also restricted to the respective infoproviders.
    Appreciate all the help.
    Kind Regards
    James

    hi,
    first of all check in tcode LISTCUBE for MP if you are getting data for any of the columns from GL cube.
    also check the characteristics from controlling cube and GL cube which are common and whether they have the same length ,  data types and values. The join at the MP level may not be working correctly which is why the data may be missing.
    regards,
    Arvind.

  • Date not showed when report is viewed in PDF .

    Hi,
    We have a text field that shows the date on which the report is running.Date is not showed when report is viewed in PDF.But in HTML we can view them . Can any one help me out?
    Totally there are four pages for the report.

    I have observed the PDF driver iin EPM 11.1.2.x is not up-to-date and technically the Date (Text) is there just like in HTML. However, when you increase the View (Zoom in), it eventually does show up.
    I have chatted with Oracle Support, and they will not address it with a patch for now.

  • Loaded data not visible for Reporting?

    Hi all,
       In the info cube, the data is not visible for reporting, How can i make it available for reporting,
    When i select the Manage option from the context menu of the cube and select the Requests Tab, i get a pop up message that tells
    " There is an inconsistency between the load status of the data and the option of reporting on this data.
    There is data in the InfoCube/ODS object that is OK from a quality point of view, but is not yet displayed in reporting.
    The problem, for example, is to do with request 0000018049, number REQU_F4ZBFRMDGBULE9WCUN3R5UX5X."
    How do i find out the inconsistancies?
    PS: All the requesta are delta upload
    Thanks n regards
    Girikumar

    Hi Girikumar
    Use the RSRV transaction and check the inconsistency of the cube ..If any inconsistency is there repair that with the repari option in the toolbar..
    Let me knwo if it not resolved..
    Bye
    Shu Moh..

  • ADF table data not refresh

    hi,
    i am create a adf table using data control. value of adf table depend on view object. where i bind a variable in where clause.
    now i am giving the value of whereClauseParam using using view object instance in backing bean method.
    when i pressed command button method run properly but adf table not refresh and not showing data.
    thanks in Advance

    public void callData(ActionEvent ae) {
    String amDef = "com.jagran.in.model.view.updatable.AppModule";
    String config = "AppModuleLocal";
    ApplicationModuleHandle handle = null;
    ApplicationModule am;
    try {
    handle = Configuration.createRootApplicationModuleHandle
    (amDef, config);
    //am = Configuration.createRootApplicationModule(amDef,config);
    // ApplicationModule sam = handle.useApplicationModule();
    am=handle.useApplicationModule();
    am.processChangeNotifications();
    ViewObject svo = am.findViewObject("BindView1");
    svo.setNamedWhereClauseParam("id","JK0554");
    svo.executeQuery();
    ((ViewObjectImpl)svo).refreshCollection(null, false, false);
    am.processChangeNotifications();
    svo.reset();
    while (svo.hasNext()) {
    Row r = svo.next();
    System.out.println( (String)r.getAttribute(1));
    } catch(Exception e)
    System.out.println(e);
    finally {
    if (handle != null)
    Configuration.releaseRootApplicationModuleHandle(handle, false);
    }

  • VS2008 CR basic Data not saving with report

    I have a Windows forms app with a CR developed in VS2008. The report displays correctily in the report viewer control and I also save it as a .rpt file. When I open this file in Crystal Reports Viewer 2008 I get the error that there is no saved data. The data source for the report is a DataView. Here is my code:
            ' set sort key of Rpt1Ds view
            If Me.radRptSeqn.Value = "A" Then
                sortKey = "Account ASC, Contract ASC"
            ElseIf Me.radRptSeqn.Value = "C" Then
                sortKey = "Contract ASC"
            ElseIf Me.radRptSeqn.Value = "N" Then
                sortKey = "Surname ASC, Contract ASC"
            End If
            AddRpt1Summary()
            Dim dv1 As DataView = New DataView(Me.Rpt1Ds.Tables(0), "", sortKey, DataViewRowState.CurrentRows)
            dv1.Table.TableName = "RRIFYePaymentsTable"
            CRpt1.SetDataSource(dv1)
            Dim dv2 As DataView = New DataView(Me.Rpt1Ds.Tables(1), "", "TotPymtFreq ASC", DataViewRowState.CurrentRows)
            dv2.Table.TableName = "RRIFYePaymentsSummaryTable"
            CRpt1.Subreports.Item(0).SetDataSource(dv2)
            CRpt1.SetParameterValue("CUName", cuname)
            CRpt1.SetParameterValue("SystemDateOR", MainForm.MySystemDate)
            CRpt1.SetParameterValue("AccrualDate", Me.dtpIntAcrlDate.Value)
            CRpt1.SetParameterValue("RptTitle", "RRIF ANNUAL PAYMENTS")
            CRpt1.SetParameterValue("IsDetailed", Me.chkRptDetail.CheckedValue)
            If Me.radRptDest.Value <> "F" Then
                CRpt1.PrintOptions.PrinterName = Me.cmbPrinter.Text
            End If
            CRpt1.ReportOptions.EnableSaveDataWithReport = True
            CRpt1.ReportOptions.EnableSaveSummariesWithReport = True
            rptViewer.CrystalReportViewer1.ReportSource = CRpt1
            rptViewer.CrystalReportViewer1.Zoom(1)      ' set to page width
            rptViewer.Show()
            If Me.radRptDest.Value = "F" OrElse Me.radRptDest.Value = "B" Then
                fileName = "RrifYePymts" & dateText & ".rpt"
                Me.RptFullPath = SaveRSPReportFile(fileName, CRpt1)
            End If

    I'm saving the .rpt file in the second to last line of my code. Here is the code for that function:
        Shared Function SaveRSPReportFile(ByVal fileName As String, ByVal rpt As ReportDocument) As String
            Dim pathName As String
            Dim fileFullPath As String
            Dim nbs As New NBShared
            pathName = My.Settings.ReportDir & "\reports\RSP"
            fileFullPath = pathName & "\" & fileName
            nbs.SaveRptDoc(pathName, fileFullPath, rpt)
            nbs.Finalize()
            SaveRSPReportFile = fileFullPath
        End Function
    This has worked with other reports. The thing that is different about this report is using a view to sort the data. I have other reports with a subreport that save the data too.
    Maureen

  • Report prints Saved Data not Refreshed Data

    We were running VS 2005 and using the Basic CR 2005 Basic that comes with it.  We upgraded to use CR 2008 and found MANY issues after we went live in production that were apparent in the development.  This has caused a lot of stress with us as well as our users.  Iu2019ll summarize everything we found, possible workarounds and the open issues including the Printing/Loading of Saved Data.
    First, it was reported that printing changed.  It turns out when PrintMode = u2018PDFu2019 (default setting) it now asks after you choose u2018EXPORTu2019 (use to be u2018OKu2019) that it asks to Open or Save the Adobe.  When our customers were running 20 some reports at a time and we had hundreds of users, this became a nuisance for the heavy reporting users and a training issue in general for us.  With research, I found that we can change the PrintMode to be u2018ActiveXu2019.  This was much better when we were testing.  However, in Production it became a nightmare.  If the user is on a Domain that disallows itu2019s user from installing software or if the user has tight security settings, this became a nightmare.
    The second thing reported was that it was exporting to the wrong format.  It was exporting into RPT format.  It turns out with CR2008, it automatically defaults to RPT and the new pop-up, doesnu2019t isnu2019t clear to the user they even have a choice (the pop-up is much prettier, but it doesnu2019t look like a dropdown anymore).  In addition, they reported it was taking twice as long to export (we think it was related to export file type now).  With CR2005 Basic, it would have no default selection and if the user didnu2019t pick one, it would remind them they need to pick one.  After much research, I found there is no way to customize the operation of the export without writing my own export.  My users 90% of the time want to export to PDF and Excel the rest of the time.  Since we arenu2019t using a CR Server like product, they NEVER will do RPT.  There is no way with CR2008 to limit this list or to default the File Format.  So now, if they forget to select the type, they get the wrong file format instead of being reminded to select one.  Since the new pop-upu2019s dropdown selection isnu2019t easily apparent, this was a BIG issue for us.  Since I have close to 300 reports on 7 websites, this will be a lot of work for me to write my own code and change all the ASPX page to use my own control.
    The third thing reported was that the default name on Exporting was changed.  Export uses the ID property of the Crystal Report Viewer as the default name of a file on export.  When it replaced the viewer on all our pages, it set the ID to CrystalReportViewer1 instead of preserving the original ID.  We now have to go back and change them to what we wanted manually.  BEAWRE of this!  For our power users who wanted to export 40 reports they now have type the name in manually on all of them.  What took minutes now takes over an hour for them to do, until we can fix all the pages.
    Now it was reported that some reports are showing OLD data.  It turns out there shows Saved Data from design time.  In our site, we have a parameter page which getu2019s user selected parameters, save to a session and then load the report page using the session variables, and then redirect them to the report page which on page load we set the reports parameters.  We use the CrystalReportSource using ODBC.  The report has all the connection information.  Well if the user happens to select the same parameters I used at design time, it wonu2019t pull the data from the database.  They see our test data instead which is garbage.  If they select different parameters, display the report and then go back and select the original parameters, they will get the correct data.  This can be catastrophic for us!  So I added at the beginning of the Page Load before setting parameters the following:
         If Not Page.IsPostBack Then
                CRSServiceAlertsReport.ReportDocument.Refresh()
         End If
    This seemed to work.  A pain to add on every report page though when it wasnu2019t necessary before.  But then I just got called this morning and they say when they print, it prited the OLD data.  It seems the refresh pulled new data and updated the display in the viewer but the ActiveX print still used the original Saved Data!  I couldnu2019t find a solution for this.  I found switching PrintMode back to u2018Pdfu2019 worked but now I have the extra click issue again, which I described above.  I tried setting the reports u2018Discard Saved Datau2019 option but it still had the data!
    In the end, had I known about all these issues I would have NEVER upgraded to CR2008.  Iu2019m still looking for help on getting by the following:
    u2022     Stop using Saved Data at runtime (either on Display or Print)
    u2022     Getting the PrintMode=u2019Pdfu2019 to just pull up Adobe in Open mode without prompting the user.
    u2022     Remove File Type options from Export
    u2022     Set the default File Type options to nothing or something I want.
    Another nice feature to have would be the ActiveX control for printing to be part of the .NET Framework so users donu2019t need to download it.  Come on BO is a big company Iu2019m sure they can work with MS.  

    What is that method to clear Saved Data; I looked and couldn't find it.  I never had to call one in the prior version of CR 2005 Basic in .Net.  With the .NET controls, it always refreshed the data before.  This is a change in behavior for me.
    As for the Print using Adobe, with CR2005 Basic, it didn't prompt the user to Open or Save before.  This is new behavior.  It used to just open the report in Adobe in memory before without this specific prompt (it did have the first prompt for All or specific pages, but it would just open after that).  This is a change in behavior from prior versions and it has caused me several issues. 
    Many users don't like change and I didn't know to communicate this to them.  They were taken by surprise.  We'll learn to live it I guess, but I would ask you just to consider, why have an option to "Save" to PDF when you choose to print?  I would think you would use Export if you want to save.  It would never hurt to add an option to allow alternatives either.
    As for including with .NET Framework, it was just an idea.  I know how hard it can be working with third parties.  However, given that CR Basic comes with it, I thought it may be possible to work with them.  The better the integration the better the product is for the developers.  I was thinking the button could call JavaScript/Java to print instead of an ActiveX, or some other method.  Since I donu2019t know how the Control works, I couldnu2019t say.  It just would be nice.  I had a smiley face after that request, it didn't come out right when I saved the post.
    I still don't understand why .Refresh will update the data in the viewer but printing using the ActiveX Control will still print the saved data instead of refreshed data.  Since I never used this in the prior version I don't know what it would of done or not, but it just doesn't seem right it shows one set of data, and prints another.
    In addition, why the designer still saves data with the report when you state not to, I think may be a problem still.
    Edited by: Thomas Johnson on Nov 21, 2008 12:26 PM

  • Data not available in report S_ALR_87013604

    Hi All,
    For some company codes the data is not executed for the report S_ALR_87013604. We have three controlling area and assigned with compnay codes. only a few company code are excuting data. Is this a chance of inactive profitanalysis for some company codes in OKKP.
    Suggest me on this

    Hi,
    Please find the below information on the report:
    This report enables you to compare the costs posted on the individual cost elements with the expenses recorded in Financial Accounting.
    In the report you can search for those accounts for which a reconciliation between Financial Accounting and Controlling is required. Reconciliation is necessary, for example, if you have executed a cross-company code allocation within CO.
    The report only displays the accounts that require reconciliation. The system uses the group currency as the report currency.
    Kind Regards
    Umapathi G

  • 0IC_C03  Data Not Showing in Report

    Dear Friends,
    We are using SAP BW 3.5. I have a problem with 0IC_C03 Cube.
    Problem is:
    Data is transfered to BW i can see the data from Cube --> Contents.
    But when i create a report i am unable to see only that particaluar data which dont
    have storage location.
    Can anybody help me why its not showing that specific data which dont
    have storage location.
    and on other hand we can see the data from Cube -->Contents
    Regards,
    malik

    Yes i am taking care of marker.
    all data is ok excep 13 records which have no storage location.
    and only these 13 records are not showing in the report and thats why
    my stock is not tele with R/3.
    Any other hint.
    regrds,
    Malik

  • Regarding planning data not available in reports

    HI SdN,
    In my reports I'm populating actual data and planning data.But as of now we have only actual data display's in our report.what we are doing is we are populating data in BW and analysing on the base of the product cutomer (compounded) combination which is coming from r/3.(groups and sub-groups which we are entering at r/3 )
    So our report shows us on the base of groups and sub groups which we are entering at r/3 level.That all is working  fine but our customer wants that planning data is also displays in the reports as of now it is showing not assigned values in report.
    so my question is ,To display planning data for group and sub groups provided by r/3 on the basis of product and customer (though other reports are showing planning data)  , I know that I need to include this compounded infoobject in bps cubes but shall I also need to consider this in the BPS functions?I'm confused here and not sure about this.
    And is that mandatory to have that componded infoobject mapped from underlying ods for customer.Because as of now planning cube is only updated with BPS functions?
    Could you pls advice?
    R

    Hi Rubane
    If the actuals and planning data are in seperate cubes then you will need to create a multi over both cubes to report on them together. However your BPS planning must be done against the same infoobject for you to be able to report on them together. If you are planning against the same IO the groupings from R3 will apply.
    Also include the infoobject 0REQUID as a characteristic restriction and restrict it to variable 0S_RQMRC (Most Current Data)
    Josh

  • Complete data not displayed in Report

    Hi forum,
    I have a cube based on data source 0FI_AR_4,which is updated via an ODS.I have created a query for ageging analysis.The query uses Referrence number ( invoice number) to display the receivables of various customers and number of days from due date.
    To my surprise many invoice numbers are not being displayed in the query, but when i restrict the query to the invoice numbers which are not being displayed the report generated is able to display all the doccuments.
    I have checked the data in the cube and all the invoice numbers are flowing well fro R/3.
    My only way of saying thanks to the people who solve the issue or provide helpful answers is by assigining points.
    Regds
    Suhel

    hello
    This is simple problem
    The result the query fetches is not able to display in the number of cells provided in the excel sheet
    So when you restrict the data, the query is able to show all the data fetched by accomadating in the columns available in the excel.
    Here in your case , there are not enough columns in the excel sheet to display all data
    Regards
    N Ganesh

  • Sharepoint excel data not refreshed

    Hi All,
    I have SharePoint foundation 2010, add one excel document after that trying to open that excel document it is showing error message.
    Error message:-
    Unable to referesh data for a data connection in the workbook.
    try again or contact your sharepoint adminstator. the following connection failed to referesh.
    powerpivot data.
    -> click on OK it is opened after that go to menu Data refresh selected connection. It is open error Message.
    It is showing error message
    Error message: 
    The current selection is not within a refreshable region of the workbook.
    Select a refreshable region,such as a pivot Table, before clicking on the refersh selected connection Buttion.
    Unable to refresh data for a connection in the workbook.Try again or contact your administrator. The following
    connections failed to refresh: ThisWorkbookDataModel
    How to fix this issue. Please
    let me know how to resolve this.
    hope this helps.
    Best Regards.
    Johnson.

    Hi,
    From your description, I know when you open excel document and it pops up some error message regarding refresh data for a data connection in a library within SharePoint Foundation 2010.
    For Excel workbooks that contain PowerPivot data, Excel Services returns this error if it submits a connection request to a PowerPivot server and the request fails. Excel Services cannot connect to or load the PowerPivot data. You could refer to this article:
    https://msdn.microsoft.com/en-us/library/ff487856.aspx?f=255&MSPPError=-2147217396.
    If you use Excel 2013 in your environment, you could refer to this article:
    "Unable to refresh data for a data connection in the workbook" error when you interact with an Excel 2013 workbook in a SharePoint Server 2010 farm
    http://support.microsoft.com/en-us/kb/2755126
    Besides, you could get something from these links:
    http://social.technet.microsoft.com/wiki/contents/articles/11566.refreshing-powerpivot-for-sharepoint-2010-sql-2008-the-data-connection-uses-windows-authentication-unable-to-refresh-data-for-a-data-connection-in-the-workbook-errors.aspx
    http://www.sharemuch.com/2012/01/22/troubleshooting-powerpivot-unable-to-refresh-data-for-a-data-connection-in-the-workbook/
    If above all don’t work, please check if there are more related error messages (which recorded around the time of error occurring when you open Excel file) from ULS log for help troubleshoot the issue.
    Best Regards,
    Vincent Han
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Data not captured in Report Painter

    Dear All,
    I have created a COPA Report by using the Report Painter,but when I execute the report the system showing as "No records were selected"
    Note that all the values are flowing properly in to KE24 report (standard line items report).
    I have checked throughly the Report Painter report,but still I could not get the data .
    Please help me as where it went wrong in terms of Report Painter.
    Regards
    Su

    Hi
    Can be an issue with your Selection Period - Record Type or the Chars you enter in selection screen
    Just execute the report with One CHar i.e. Comp code  /.Period
    You should be able to see the result.. Later on yuo can modify the report
    br, Ajay M

  • WBS dates not update in report

    Dear All
    I have created Project through Sales Order. Delivery date in sales order is end date of project
    All activities are link (established relationship) one network and assigned to WBSEs in project.
    I have also mentioned the normal duration for each activity in network.
    I am doing scheduling of these activities with following specific requirements -
    1) Backward scheduling is to be done...start date for network can be either today's date or it can also be in the past...end date for completion of network is fix.
    2) Scheduling is to be done on entire project, the dates should be determined by the system for activities and should be transfered to the respective WBS elements (i.e. network determined dates)
    I have maintained following config settings -
    Scheduling Parameters -
    Adjust date - 2 (do not adjust)
    Scheduling type - 2 (Backward)
    Automatic scheduling - Ticked
    Reduction strategies - All opern in the order
    Parameters of Scheduling -
    Backward, network det date, adjust basic dates (tick), Automatic scheduling (Tick)
    when I run scheduling for entire project its gives result properly but in report CNS41 my dates for ErlStrt(B) F and LtStrt (B) for WBS seen ##.##.#### .
    Do I need to change anything in the config???
    Regards

    Hi Ahemad
    The issue was same with all reports. The date was display properly in WBS under dates tab or even I able to view report from CJ20N through Project Planning board (gantt chart) by selection of dates field. I only get problem under to column ie ErlStrt(B) and LtStrt (B) where dates was reflected ##.##.#### only for WBS but activities under same WBS dates shown properly.
    Regards

  • Data not displaying  the report (Help me out Urgent)

    Hi Folks,
    When i am executing the query and web reports for the date 27/11/2007 & 28/11/2007 am not getting the data its saying "No applicable data found"
    But i can see the data  in the  ODS for those dates.
    Report is working fine till 26/11/2007.
    But when the user is trying to check the reports for the above mentioned dates its not displaying.
    Even in checked it the RSRT as well but the same case over there the data is not displaying.
    Its bit urgent as its month end user wants to see the reports.
    Any help or any clue will be great helpfull and appreciated.
    Urs,
    RK
    *****Points Committed

    HI Suchitra,
    <i>First check out how many records are there in the ODS as on 27th and 28th</i>
    There are totally 750 & 427 records on 27th and 28th.
    <i>At the time of executing the query,are using giving any variable entries?</i>
    Yes we are using variables entires like PO Date & PO number we usually check  the reports giving the date in  PO Date variable,
    Any other clue please?
    Urs,
    RK.

Maybe you are looking for

  • Question about PNP...LDB

    Hi All, I have been asked a simple but strange question about PNP LDB. When we assigned logical database in our program, it will basically create a selection screen, which have certain fields. Like Today.. Some date ranges. Person assigned number, co

  • Profile value per_person_id is not listed for $PROFILE$ block

    Hi All, I have reqirement to retrive the person_id to default Employee number in Personal analysis descriptive flex filed segment. When i tried using $PROFILES$.PER_PERSON_ID or fnd_profile.value('PER_PERSON_ID') is not working for me. Then i have ch

  • Incorrect access restriction in Drag & Relate

    Hi, I am encountering an access issue in Drag & Relate function. I have created two numbering series for Purchase Orders. PO and YPO. "User 1" can access the Purchase Orders with the series PO and "User 2" can access the ones with "YPO". I have set t

  • MIS report extraction for P&L and B/S  t codes

    Hi MIS report required from SAP for the following: 1. Profit & loss acct (consolidated , plant and segment wise) 2. Balance sheet we havn't configured FSV at production yet, so without this is it possible? Edited by: barnabasjh on Jul 7, 2010 12:50 P

  • Syncing podcasts on laptop main PC?

    Hi, How do I not re-subscribe and re-download all my podcasts between two PCs? For example my main PC has 10 podcasts subscriptions and some 30 videos. How do I make the iTunes on my laptop subscribe to the same podcasts without manually subbing to t