Console/Site Server showing old data

We have a single site with a Management point on a seperate box (sql replica). In my console, I have columns added for the inventory dates and when looking at the dates, my most recent date is yesterday. If I connect to a machine with an old date, confirm
that it indeed, hasnt done an inventory, and initiate an inventory, it is successful. I can then run a report for the last inventory date on that computer and the last inventory date is updated. I dont think its a coincidence that the reporting server is the
management point so the data is practically real time. When my console connects up to the primary the old date is still in there. I have become more patient since using CM but I need that updated data in the console sooner, not just on the report. It is updating
eventually because I have dates in there from yesterday. But I would like to see today's data today.
Everything with the replica is syncing just fine, I have no errors in my transaction log, my site components are nice and green :) any ideas of where to check/adjust

Yes, I know this is an old post, but I’m trying to clean them up. Did you solve this problem, if so what was the solution?
Somehow this one slip my inbox. There are a couple of things
The console does not update in real time, instead it use cached details, which is refresh every 24 hours. And I don’t know how to adjust it.
I would use reporting instead of the console for real time troubleshooting.
Unless you have told it to use the SQL replica, SSRS would use the CM!2 database.
Garth Jones | My blogs: Enhansoft and
Old Blog site | Twitter:
@GarthMJ

Similar Messages

  • Stock app (builtin) - no way to update graphs (they show old data)

    Even if I exit and enter again form the app, switch graph View (from 1day to 1month) some graphs always shows OLD data (even a month or so).. even if it seems it download data from the network..
    It doesn't happens with ALL the stock quotes.. and it doesn't happen with the %, Price or Capit... it only happens with the graphs..
    Tried also to reset the iPhone.. problem still there..
    Any idea? Any way to "clear cache"/"force reload data" for graphs??
    Thanks

    There isn't a way,  I suppose Apple have never considered users might use it the way you are. Or more likely they don't think you should.

  • Report deployed on production server show different data from that in debug mode

    Hi,
    i have created a report that use temporary tables and when i get the preview on Management Studio show some data, but when i deploy the same report on the production server i see that the data is different!!!!
    To check this issue i create a simple table on which i transfer the results data before to show it on the report and with my surprise  the number of rows of the production execution is less than the debug execution!!!!
    Notice that i use the same value for the report parameters.
    Any idea?
    Thanks a lot!!!

    Hi ,
      Check in your solution folder and try to find .data file.
      Delete the data .Data file on the same name of your report and run the report from SSMS.
      Check the below link on clearing report cache
      http://jasonfaulkner.com/ClearDataCacheBIS.aspx
    Best Regards Sorna

  • Last changed date of query showing old date

    Hi All,
    We have made a change to a query (description change) and saved.  When we open the Analyzer we still see the old description and also the last changed date shows an old date.  Not the latest date the query was last changed on.  We tried generating the query in RSRT, but no luck.
    Can someone let us know what we can do?
    Thanks!

    Hi Kams,
    We are using the Analyzer, log out back in, etc...
    As mentioned we did a regenerate by RSRT 'generate'
    any other ideas?

  • KE30 - while excute of report, it is showing old date instead of current.

    Hello Experts,
    I have one problem with KE30 report. I have reprot called Actuals, Whle excuing this reprot,it is showing the four days old date instead of shown today's date. ( eg. it is showing the old date while execute the report of 21/06/2008... instead of todays date).
    Please guide me to solve this problem.
    Thanks in Advance.
    sudarshan
    9916941164

    Hi There,
    The reason could be that there are some changes in the form of the report. You can try to regenerate the report and see if you have the most current data.
    regards,
    Ronny

  • ALV object in function module shows old data

    Hello,
    I create a function module with import parameter matnr.
    This function module calls a screen that displays an ALV with the whole info of matnr out of table mara.
    I include this in a program where a material can be selected. This is then input for the function module. Everything looks good for the first material. However when the function module is called for a second material I still see the ALV with the data of the previous material.
    When I debug the code I see that new data is selected and put on the alv (with method set_table_for_first_display)  but still I see the old ALV (which I free by the way in the exit of my function module...). It drives me crazy, what's the problem?
    <b>My function module:
    </b>
    FUNCTION ZJVB_TEST.
    *"*"Lokale interface:
    *"  IMPORTING
    *"     REFERENCE(I_MATNR) TYPE  MATNR
    g_matnr = i_matnr.
    call SCREEN 1979.
    ENDFUNCTION.
    <b>TOP include:</b>
    FUNCTION-POOL ZJVB_TEST.                    "MESSAGE-ID ..
    data: ok_code type sy-ucomm,
          container type ref to cl_gui_custom_container,
          alv type ref to cl_gui_alv_grid,
          g_matnr type matnr.
    *&      Module  STATUS_1979  OUTPUT
    *       text
    MODULE STATUS_1979 OUTPUT.
      SET PF-STATUS 'FMAIN'.
    *  SET TITLEBAR 'xxx'.
      if container is INITIAL.
        CREATE OBJECT CONTAINER
          EXPORTING
            CONTAINER_NAME              = 'CONTAINER'    .
        CREATE OBJECT ALV
          EXPORTING
            I_PARENT          = container.
        data: itab type TABLE OF mara.
        select *
          from mara
          into TABLE itab
          where matnr = g_matnr.
        CALL METHOD ALV->SET_TABLE_FOR_FIRST_DISPLAY
          EXPORTING
             I_STRUCTURE_NAME              = 'MARA'
          CHANGING
            IT_OUTTAB                     = itab.
      endif.
    ENDMODULE.                 " STATUS_1979  OUTPUT
    *&      Module  USER_COMMAND_1979  INPUT
    *       text
    MODULE USER_COMMAND_1979 INPUT.
      case ok_code.
        when 'BACK'.
          free container.
          free alv.
          LEAVE to SCREEN 0.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_1979  INPUT
    <b>My program:</b>
    *& Report  ZJEROEN_ALV_FM
    REPORT  ZJEROEN_ALV_FM.
    data: ok_code type sy-ucomm,
          l_matnr type matnr.
    call SCREEN 1979.
    *&      Module  STATUS_1979  OUTPUT
    *       text
    MODULE STATUS_1979 OUTPUT.
      SET PF-STATUS 'MAIN'.
    *  SET TITLEBAR 'xxx'.
    ENDMODULE.                 " STATUS_1979  OUTPUT
    *&      Module  USER_COMMAND_1979  INPUT
    *       text
    MODULE USER_COMMAND_1979 INPUT.
    case ok_code.
      when 'BACK'.
        leave to screen 0.
      when 'CALL'.
          CALL FUNCTION 'ZJVB_TEST'
          EXPORTING
                    i_matnr = l_matnr.
    endcase.
    ENDMODULE.                 " USER_COMMAND_1979  INPUT
    Thx for helping,
    jeroen

    Hello,
    I found out that the container lifetime was the problem... When you create a container to put the ALV in the lifetime is set to default. Normally you never change this, I didn't mention it before I had the problem. But you have to change the lifetime to <your_instance_name>->lifetime_dynpro for instance my_container->lifetime_dynpro.
    Also check this helplink: http://help.sap.com/saphelp_nw04/helpdata/en/9b/d080b79fc111d2bd68080009b4534c/frameset.htm

  • DB02 - Space - overview Histoy not showing old data

    Hi,
            We are using ECC6HPUX11Oracle 10.2.0.4 and patch level is 17. We have recenlty upg the supp pack. Our issue is DB02 is not showing last years Space history. We have other Env of SRM SCM and XI where there is no problem with the Space - history. Now the space history is showing only from jan 2009 and we want the old space history. can anyone please help us
    Thank you
    Umesh K

    Hi,
    Please check attached link.
    [https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=73945]
    Hope this helps.
    Manoj

  • Net Statistics Server shows incorrect date (1995)

    I have a server that keeps rebooting and need to know the uptime of it.  Our servers use 0.pool.net.org NTP for our time syncing.
    I'm running "Net Statistics Server" and seeing that the following:
    Statistics since 9/8/1995 4:34:10AM.
    What could be causing my server stats to show the year of 1995???  CMOS battery?

    Hi SJurick,
    Would you please let me know detailed edition information of this server OS which this issue occurred in? Was
    it Windows Server 2008, Windows Server 2008 R2 or others?
    Please run
    systeminfo | find "System Boot Time" command and check if the correct System Boot Time was displayed.
    Meanwhile, please also refer to following KB and check if can help you.
    "Net statistics server" output displays incorrect
    time
    Hope this helps.
    Best regards,
    Justin Gu
    Justin,
    Server: Windows Server 2008 Standard, SP2
    net statististics workstation yields "Statistics since 9/29/2014 7:41:51"
    systeminfo | find "System Boot Time" yields "System Boot Time: 9/29/2014 7:41:59"
    Steve

  • Ediscovery showing old data - not current

    i have a strange probelm where when i am doing ediscovery . it shows the results but only till 3dr december. not sure what to check. this is happening with all users.
    Thanks
    Happiness Always
    Jatin

    What happens when you use PowerShell to perform the search?  The command you need is New-MailboxSearch - http://technet.microsoft.com/en-us/library/dd298064(v=exchg.150).aspx. 
    A sample from that page:
    New-MailboxSearch -Name "Legal-ProjectX" -SourceMailboxes DG-Marketing,DG-Executives -TargetMailbox [email protected] -StartDate "01/01/2011" -EndDate "12/31/2011" -Recipients "*@contoso.com" -SearchQuery "project report hasattachments:true" -StatusMailRecipients
    "DG-DiscoveryTeam"
    See if you can create a command that works and if you can get the date range to work past Dec 3 of last year.  As a curious questions, did anything happen on Dec 3 of that year?  Patching or service pack applied?
    The other possibility is that the database content indexes could be causing an issue as well. Maybe they are failed, corrupt or otherwise in a bad state.  Can you check this in the EAC as well?  Go to Servers -- Databases and highlight each database. 
    Look for Content Index State on the right to see if it says Healthy or Failed.
    JAUCG - Please remeber to mark replies as helpful if they were or as answered if I provided a solution.

  • Draft email date shows old date

    If I save an email as draft multiple times before sending it, the date gets set to 10/25/2012.  The recipient sees it as the current date, but when filing it in conversations on my iPad it considers it as sent on 10/25/2012.   I can create this same scenario in both Yahoo and Gmail. 

    Instead of sending the draft email, then, open the draft, cut all the contents, create a new email message, and paste the contents.  Then send the new email and delete the draft.

  • Bookmark in WAD7 shows old or current data

    Hi guys
    please confirm
    1) if the bookmark created in wad 7 will show old data or the current data if it is run at a later period?
    2) the bookmark bi 7 is getting created on the top of the browser page and not on the address bar. how can i enable the wad to display the bookmark created on the address  bar.?
    Thanks in advance.
    Best Regards
    MU

    bookmark only holds the View/variables not the data., if new data has been added then it will show new data ..
    if you are tryingn to shwo the bookamrk at internet explorer level that doesnt work
    you can show book mark at the web template level inside the internet explorer. you need to create a menu item and assing bookmark in it.. if you require the steps let me know.
    http://help.sap.com/saphelp_nw04/helpdata/en/5d/53213c51febb2be10000000a11402f/content.htm
    this will help

  • Content Rendered from UCM after updation returns old data

    Hi
    The requirement that i have in place is as below:
    1. Portal application should have an option to display content from UCM(Content here is just the metadata like title, description, etc of the content)
    2. The application should also have options for adding, updating and deleting the content.
    3. The updates should immediately reflect on the display.
    I am achieving the above using RIDC apis, not using OOTB task flows.
    But the issue that am facing here is that after performing any of add,update or delete the results fetched are still the older ones. There fore my display screen still shows old data.
    And one observation is that the updates are reflected only when i send a new browser request.
    I have tried refreshing, clearing browser cache, but nothing seems to work. Not sure if the content is being cached on the UCM server itself.
    If so how do i clear it?
    I am using GET_SEARCH_RESULTS to fetch the data and display.
    And i am using PS4 version of webcenter.
    I really need some help on this ASAP as it is in a critical state or any work around please.
    Thanks

    Hi Nelson
    The code snippet used for fetching the content metadata is as below
    To retrieve all the Folder information
    requestBinder.putLocal("IdcService","COLLECTION_DISPLAY");
    requestBinder.putLocal("hasCollectionID","true");
    requestBinder.putLocal("dCollectionID",rootFolderId);
    ServiceResponse response = idcClient.sendRequest(idcContext, requestBinder);
    DataBinder resultbinder = response.getResponseAsBinder();
    resultbinder.getResultSet("COLLECTIONS");
    List folderList = new ArrayList();
    for (DataObject data : resultSet.getRows())
    String parentId = data.get("dParentCollectionID");
    if (folderId.equals(parentId))
    folderList.add(data);
    To retrieve all the content information under a folder
    requestBinder.putLocal("IdcService","GET_SEARCH_RESULTS");
    requestBinder.putLocal("QueryText",
    new StringBuilder().append("xCollectionID >= `").append(docInfo.get("xCollectionID")).append("` <AND> xCollectionID <= `").append(docInfo.get("xCollectionID")).append(" ` ").toString());
    requestBinder.putLocal("SortField","dInDate");
    requestBinder.putLocal("SortOrder","DESC");
    idcClient.sendRequest(idcContext, requestBinder);
    resultbinder.getResultSet("SEARCH_RESULTS");
    List files = new ArrayList();
    for (DataObject dataObject : resultSet.getRows())
         files.add(dataObject);
    Once i have the list i just iterate over it and display using <af:outputText> or <af:commandLink>
    Till now havent been able to find the issue.
    The ony solution which helped this is to call this retrieval method twice before displaying. But this is creating a huge performance issue.
    So i am looking for a proper solution for this.
    Please help.
    Thanks

  • TB v. 24.0: Changed ISP's; ~ new email in Server Settings & Outgoing Server & all Address Books and Contacts; TB still showing old email ID for Fwd & Rply

    TB v. 24.0, Win 7 Pro. Changed ISP's. I use Outlook 2007; wife uses TB, same box. Changed TB username & e-mail address in Server Settings & Outgoing Server & set as Default. Changed e-mail address in all address books and Contact lists. Now TB still showing old e-mail address in <From> when Reply or Forward. This is confusing recipients, who have been sending their replies off to a now-nonexistent account. Checked Windows Contacts - empty. Checked my Outlook 2007 - all Contacts changed appropriately. How do I kill that old e-mail address in TB when it isn't even listed any more - except when we try to Reply or Forward?

    When you got the new email address and changed ISP's, you needed to create a new mail account for that new existing email address.
    When a mail account is created there are many preferences setup to be able to manage and run that mail account. Trying to track down and modify all of those within the either the config editor or prefs.js is not only time consuming, but you could easily cause further problems if any error is made.
    So I suggest you fix the original account by reentering all the old data. Then create a new mail account for the new exisitng mail address.
    * File > New> Existing mail account.
    or
    * 3bar menu icon > New Message > Existing Mail account.
    when you have both mail accounts in your left folder pane, you can choose to move any wanted emails from the older mail account into suitable folders in Local Folders. This will save a copy of emails.
    Then you can delete the old account, leaving saved emails in Local Folders and only one new mail account.
    To remove mail account:
    * Tools > Account sEttings
    * select old mail account
    * click on 'Account Actions'
    * select 'Remove Account'
    * click on OK

  • Report generated in Forms 6i shows no data on Web server

    Hi guys,
    I am having an application running web server Unix platform. We have recently migrated from forms 4.5 to 6i. I have a form which generates a report. When run on Web server, the report is generated but shows no data. The report runs fine when run in the client server mode. The parameter list in the form is generated using a procedure from one of the PL/SQL libraries and this is passed to another program unit in the form which runs the report.
    Any solutions for this?

    Rohanb,
    I had a similar situation (Reports 9i) so for all users, 95% could see the pdf and 5% get a beautyful white page...
    After updating for Acrobat Reader 7, everybody see the correct result !
    Francois

  • Enterprise Manager Console doesn' t show the correct data

    Hi everyone,
    we use a oracle 10gR1 rac with two nodes.
    we use the oracle enterprise manager console but it does not work all parts of.
    And the console is wrong with some parts of the data shows.
    for example ;
    in the home page, Performans Analysis section shows the date two months earlier. Why ?
    (Period Start Time 25.Ara.2010 21:00:59 Period Duration (minutes) 60,02)
    other example ;
    in the performans tab, host section does not show any data.
    why doesn't work this section?
    what can i do?
    oracle version = 10.1.0.5
    OS platform = AIX node1 3 5 00C5116E4C00
    thanks.

    Hm... could be that your machine is low on RAM for java apps (yours and OEM Console). (You can check resource consumption via perfmon)

Maybe you are looking for