Update status is incorrect

When I run update status reports, some computers show "not needed" for an update that is clearly needed. For instance, if I run a compliance report and look for the status of KB2775511, I get a lot of computers showing "Update is not required"
- however, these computers don't have KB2775511 installed, and clearly need it.
In fact, each client believes it needs the update because it's listed as "Missing" when I check the CCM_UpdateStatus WMI class at "root/ccm/SoftwareUpdates/UpdatesStore". Furthermore, if I deploy the update via SCCM to one of these computers,
the computer recognizes it needs the update and installs it. So it seems that the report (or wherever the reports gets its information) is what's at fault here.
The other odd thing I notice about the report is that the computers with incorrect statuses have very recent dates for "Last State Received", and no date for "Last State Change". This is different from computers that are correctly
reporting their status, which have values for both, typically with older dates.
Any idea why my reports are incorrect?
Eric Hodges

Hi,
Have you checked the following log files:
StateMessage.log(Client)
It records details about software updates state messages that are created and sent to the management point.
MP_Relay.log(Site system server)
It records the transfer of files that are collected from the client.
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.

Similar Messages

  • Status : 51- Incorrect function module IDOC_INPUT_MATMAS01 called up

    Hello,
    File - IDOC
    in MONI, checkered flag is shown up and when I go the R3 server, WE05, I get error message
    Status : 51
    Incorrect function module IDOC_INPUT_MATMAS01 called up
    I am using MATMAS04 without extension and updated the same in WE57. also checked in WE42 (MATM)
    now, how do I proceed furthur related the above error message?
    Regards,
    Nikhil.

    can very much
    check your partner profiles PROPERLY. If u have the same IDoc type in 2 different partner profiles, check the 2nd one for it's process code. Isn't it the one, which is called after your Idoc is received? Processing code in partner profile is not based only on Idoc Type, but also on Message Type, Message Code and Extension. If the 2nd profile contains the process code, which is called, then check your incoming idoc for header values. May be this is causing your problem.
    Peter

  • Sales order cannot be rejected -problem log status item status is incorrect

    Hi,
    I need to reject this particular sales order, but when i try to reject it says to check the problem log which states that the item status is incorrect. It says subsequent documents exists for some lines even though no documenst are attached.
    There were a delivery attached to this order earlier but that has been archived. I ran repors SDVBUK00 etc but nothin seem to sort this issue..
    I just need to reject the whole sales order. does anyone know any reports or somethin to rectify this issue.
    Thanks
    Keshini

    Dear Keshini,
    Could you please update with the process of Delivery Document Archieved?
    I mean, had you reversed the delivery (T. Code: VL09) and then deleted the items from reversed Delivery Doc (T. Code: VL02N), before deleteing the Delivery Doc?
    Was there any subsequent document for Delivery Doc.?
    Best Regards,
    Amit
    Note: Also, check with Copy-Control settings for Order-to-Delivery (T. Code: VTLA)
    1. Field: Update Document Flow is marked ticked at
    Item (Dialog Structure) --> Item Category --> Control data
    2. Field: Pos./neg. quantity with entry "+"

  • Status distribution incorrect in GOA

    Hi,
    i've created a shopping cart, then bid invitation followed by Bid submission to bid acceptance. Then i created a contract from this bid response successfully. But the problem is when i distribute this contract to R/3, distribution fail with status "Distribution incorrect" I don't understand the missing link. Am using SRM server 5.5 (SRM 5.0) with ECC 6.0.
    Kind Regards,
    Maggie

    Hi Goithoma,
    I faced exactly same problem and coded a BADI to solve this issue.
    Actually Condition type in SRM and ERP is different and that is the reason for this.
    BADI Name: bbp_ctr_be_create
    Sample Code is
    METHOD if_ex_bbp_ctr_be_create~contract_interface_fill.
      TYPES : BEGIN OF ls_mapping,
      cond_type_old TYPE kscha,
      cond_type_new TYPE kscha,
      END OF ls_mapping.
      DATA : lw_ct_be_text TYPE bbps_ctr_text.
      DATA: ls_be_items TYPE bbps_ctr_item,
      ls_be_cnd_ct TYPE bbpbapicondct,
      ls_cnd_hd TYPE bbpbapicondhd,
      ls_cnd_it TYPE bbpbapicondit,
      ls_cnd_qs TYPE bbpbapicondqs,
      ls_cnd_vs TYPE bbpbapicondvs,
      ls_mapping TYPE ls_mapping,
      lt_mapping TYPE TABLE OF ls_mapping,
      lv_tabix_ct TYPE sy-tabix,
      lv_tabix_hd TYPE sy-tabix,
      lv_tabix_it TYPE sy-tabix.
    Condition Type mapping from SRM to ERP system.
      ls_mapping-cond_type_old = '01CT'.
      ls_mapping-cond_type_new = 'PB00'.
      APPEND ls_mapping TO lt_mapping.
      ls_mapping-cond_type_old = '01RA'.
      ls_mapping-cond_type_new = 'RB00'.
      APPEND ls_mapping TO lt_mapping.
      ls_mapping-cond_type_old = '01RH'.
      ls_mapping-cond_type_new = 'RA01'.
      APPEND ls_mapping TO lt_mapping.
      ls_mapping-cond_type_old = '01RP'.
      ls_mapping-cond_type_new = 'RA00'.
      APPEND ls_mapping TO lt_mapping.
    go through all service items (product_type 01 = normal material,
    product_type 02 = service)
      LOOP AT ct_be_items INTO ls_be_items.
    additional loop on local condition table if product_type = 02
    if 02 --> change SRM condition 01CT to PRS
    only valid with services !
        IF ls_be_items-product_type = 02.
          LOOP AT lt_mapping INTO ls_mapping
            WHERE cond_type_old = '01CT'.
            ls_mapping-cond_type_new = 'PRS'.
            MODIFY lt_mapping FROM ls_mapping.
          ENDLOOP.
        ENDIF.
        LOOP AT ct_be_cnd_ct INTO ls_be_cnd_ct.
          lv_tabix_ct = sy-tabix.
          LOOP AT lt_mapping INTO ls_mapping
            WHERE cond_type_old = ls_be_cnd_ct-cond_type.
            CLEAR ls_be_cnd_ct-cond_type.
            MOVE ls_mapping-cond_type_new TO ls_be_cnd_ct-cond_type.
          ENDLOOP.
          MODIFY ct_be_cnd_ct FROM ls_be_cnd_ct.
        ENDLOOP.
        LOOP AT ct_be_cnd_hd INTO ls_cnd_hd.
          LOOP AT lt_mapping INTO ls_mapping
          WHERE cond_type_old = ls_cnd_hd-cond_type.
            CLEAR ls_cnd_hd-cond_type.
            MOVE ls_mapping-cond_type_new TO ls_cnd_hd-cond_type.
            MODIFY ct_be_cnd_hd FROM ls_cnd_hd.
          ENDLOOP.
        ENDLOOP.
        LOOP AT ct_be_cnd_it INTO ls_cnd_it.
          LOOP AT lt_mapping INTO ls_mapping
              WHERE cond_type_old = ls_cnd_it-cond_type.
            CLEAR ls_cnd_it-cond_type.
            MOVE ls_mapping-cond_type_new TO ls_cnd_it-cond_type.
            MODIFY ct_be_cnd_it FROM ls_cnd_it.
          ENDLOOP.
        ENDLOOP.
      ENDLOOP.
    ENDMETHOD.
    Regards,Nishant
    Please reward points if this helps.

  • FM to update status in COR2

    Hi Guru's,
    I am trying to update status of Process Order(COR2) using 'status_update' FM.
    The FM is returning sys-ubrc eq 0.
    But when i move to COR3 the status remains unchaged.
    I tried same with STATUS_CHANGE_INTERN FM , after FM i checked sy-subrc and used 'COMMIT WORK'.
    Hope some one will help me!

    Resolved by self.

  • Best way to Report on OS and Security Update Status?

    Now that our OS X roll-out is nearly complete, we need to be able to get reports on all client mMacs , their OS versions and, more specifically, their security update status.
    The "Software Difference" report seems to be falling short on showing the information we're looking for. And the "System Overview" report seems only to show straight OS and point-release level, not security update info.
    Can someone recommend a better way to get this information?

    I haven't come across a command that can show what updates have been installed, but to see a list of updates that a computer needs, try sending
    softwareupdate -l
    (that's the lower-case letter L as in "list") through the Send Unix Command (send as root). Here's the full details of the command:
    usage: softwareupdate <mode> [<args> ...]
         -l | --list          List all appropriate updates
         -d | --download          Download Only
         -i | --install          Install
              <label> ...     specific updates
              -a | --all          all appropriate updates
              -r | --recommended     only recommended updates
              -u | --url <url> ...     from signed package URLs
         Per-user preferences:
         --ignore <label> ...     Ignore specific updates
         --reset-ignored          Clear all ignored updates
         --schedule (on | off)     Set automatic checking
         -h | --help     Print this help

  • Problem in workflow process when update status of CC32 via workflow

    Hi,
    i am working on workflow support issue which is relating to CC31/CC32, here we create change number in CC31, but we won't change status of CC31 in CC32. it is possible thru workflow item only. but when 3 rd person updating status from 2 to 3, he is geting error, because the previous statuses are not updated. it's happening sometimes only not all the times. why.
    venkey

    Hello,
    What's the error? What's CC31?
    regards
    Rick Bakker
    hanabi technology

  • IPod shuffle software update status different between users

    With User 1, iTunes 7.0.2 says my 2G iPod shuffle is up to date (software version: 1.0). If I switch to User 2 and plug the same iPod shuffle into the dock, then iTunes says there's an iPod sofware update available (version 1.0.1). I decline the offer to update. Going back to User 1, no update is suggested (version 1.0 is current).
    Why does iTunes report a different software update status depending on which user is active? I don't think there's a software version 1.0.1 for the 2G iPod shuffle.
    There is no ~/Library/iTunes/iPod Software Updates/ folder for either user.
    iMac G5 (B) 20-inch   Mac OS X (10.4)   2.0 GB RAM

    I found the solution on MacOSXHints:
    http://www.macosxhints.com/article.php?story=20060912144151766
    Summary: on the Summary tab, click Restore (will pop up a confirmation dialog), then Cancel, and the Update button then indicate version 1.0.1 for User 1. Then click Update. iTunes did the update, no muss, no fuss.

  • Why I can't upload photos nor update status by iOS in iPhone 5? Are there any ways to fix this thing?

    I am using iOS 6.1.3 right now. But before I update my iOS, I was using iOS 6.0.2 but still I cannot upload any pictures via iOS in facebook also cannot update status in facebook. I am using iPhone 5.

    Go into SETTINGS and scroll down to FACEBOOK. Make sure your login and password are there. If they are, try removing them and re-adding them.

  • Set on which day of the week to receive the Update Status Summary

    Hi all,
    currently it is set to weekly, i received on Friday. Is it possible to be change this day to be different? For example Monday, or Saturday? Thanks in advance
    WSUS version 3.2.7600.226

    The weekly Update Status Summary is driven by when you originally configured the "Send status reports" option. The report will be generated on the day-of-week that you enabled the option.
    To reset (set) the desired day of week, disable the notification functionality, and then re-enable it on the day you want the report sent.
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • HT4059 I cannot open some of my books I purchased. They're locked like awaiting an update. There's a blank update status bar on the books. What's wrong?

    I cannot open some of my books I purchased. They're locked like awaiting an update. There's a blank update status bar on the books. What's wrong?

    An "other" larger than about 1 1/2 GB indicates corrupted files.
    What is the Other on my iPhone and How to Remove It
    What is "Other" and What Can I Do About It?
    Next, usually restoring from backup eliminated the corrupted files. However, sometimes restoring to factory settings/new iPod is required.
    To restore from backup see:
    iOS: How to back up
    To restore to factory settings/new iPod see:
      iTunes: Restoring iOS software

  • Publish Server Update status using IIS

    Hi, I had setup the WSUS on a 2012R2 for my server environment. My job is to approve the updates and work with server owners (eg. Application team). May I know how to publish the server update status/report using WSUS server with IIS.
    My other IT team can go to the site for checking their servers' update status and carry on the manual update job via remote desktop. Rather than remote to each of their server to check the updates been push.
    I saw this feature before when I was with my ex-company. The WSUS team will send us a link and I will use the site to sort out those server which belongs to me to verify any new updates been pushed.
    Appreciate your feedback soon.

    Hi,
    As far as I know, there is no web management UI for WSUS.
    If we want to manage the WSUS server remotely, we can install the WSUS Administration console.
    To download WSUS Administration console, please click the link below:
    http://www.microsoft.com/en-us/download/details.aspx?id=5216
    Best Regards.
    Steven Lee Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • IPhone 5 Updating Status on Facebook App crash

    Does anyone using iPhone 5 experience Facebook crashing after updating status on the Facebook app? I have FB integration on and this always happens after i update my status under News Feed. ANYONE???

    have you seen anyone with the apple logo on facebook recently? i'm asking because a simple google search will tell you that facebook is the one blocked the apple logo, or the 'posted from iphone' from showing up. now you've got me wondering.

  • The wrong user name pops up when I try to update apps on Iphone. Unable to update or change incorrect user name.

    The wrong user name pops up when I try to update apps on Iphone. Unable to update or change incorrect user name.

    It is popping up because you have apps installed that you bought with the old AppleID, you can either delete those apps or buy the apps again using your new Apple ID, if they were free apps then not a big deal, paid apps obviously means you would have to buy them twice.

  • Automaitc Updates through SCCM 2012 not showing up on the updates status

    Hi,
    I have configured Automatic Update rule on SCCM 2012 and it works fine but on the client machine i see this.
    This is the update status it shows which means updates are not being installed since long time.
    But when i see the update history it shows me the latest updates installed.
    Why would this happen? please suggest.
    Regards,
    Maqsood
    Maqsood Mohammed Senior Systems Engineer MCITP-Enterprise Admin & ITILv3 Foundation Certified

    Hi,
    That is as expected as the updates are installed using SCCM and not the Windows Update Agent, if you deploy a client using SCCM OSD and install software updates using SCCM and not WSUS/Windows Update it will actually say:
    "Updates were installed: Never"
    Regards,
    Jörgen
    -- My System Center blog ccmexec.com -- Twitter
    @ccmexec

Maybe you are looking for