Software Updates Compliance Report issue

Hi all,
I came across a weird behavior in built-in reports and I am looking for a fix or explanation.
I am trying to use "Software Updates - A Compliance" category -> "Compliance 4 - Updates by vendor month year" report, but when I choose the desired collection (All Servers) and keep the rest as "All values" (as I want to
list everything), report shows only 12 pages of results. By this I can't see all as the report is truncated. If I specify year, I get results which are not listed in "All values". I can get the list of updates by selecting each year separately and
export them, but...
Can someone explain why the report shows incomplete results and only 12 pages?
Thanks in advance!
Arnie

I looked at the SQL Query what is been used in the SSRS Report .seems like the name all values misleading here.
as per the declaration of these input variables,the all values means ,Null or empty.
If at all,you need to get all KB information from very long date as you mean ,get all the values,then you should really modify the query.
SQL is mainly doing the filter based on the following (apart from joins):
(@FromDate is null or ci.DateRevised>=@FromDate and ci.DateRevised<@ToDate)
              and (@VendorID=0 or @VendorID=ven.CategoryInstanceID) 
              and (@ClassID=0 or @ClassID=cls.CategoryInstanceID)
              and (@ProductID=0 or @ProductID=prd.CategoryInstanceID)
            order by ci.DateRevised desc
for Ex: If you select vendor as 'All Values' ,means nothing, implies vendor is blank. You can try selecting the vendor as All Values and you get the KB information for only with vendor as Null.
declare @VendorID int = case when @Vendor='' then 0 else (select CategoryInstanceID from v_CategoryInfo where CategoryTypeName='Company' and CategoryInstanceName IN (@Vendor)) end
from the above vendor select statement, you must supply some value to it either Microsoft,adobe or local publisher else ,the declare statement treat the vendor value as blank .
Next ,Year :
declare @FromDate datetime = case when @Year!='' then convert(datetime, @Year+'-'+case when @MonthNumber!='' then @MonthNumber else '01' end+'-01', 20) end
for year and month,you should select the value otherwise,you get the information with null values or so.
Same goes for Month ,product ,Update Class.
declare @ToDate datetime = case when @Year!='' then dateadd(month, case when @MonthNumber!='' then 1 else 12 end, @FromDate) end
declare @ProductID int = case when @Product='' then 0 else (select CategoryInstanceID from fn_rbac_CategoryInfo(@lcid, @UserSIDs) where CategoryTypeName='Product' and CategoryInstanceName=@Product) end
declare @ClassID int = case when @UpdateClass='' then 0 else (select CategoryInstanceID from fn_rbac_CategoryInfo(@lcid, @UserSIDs) where CategoryTypeName='UpdateClassification' and CategoryInstanceName=@UpdateClass) end
Eswar Koneti | Configmgr blog:
www.eskonr.com | Linkedin: Eswar Koneti
| Twitter: Eskonr

Similar Messages

  • Software Updates Compliance Report for Specific Computer - DatePosted

    Hello, I am using the default report to know the Software updates compliance state for a specific computer. The business requirement is to get date the software update has been posted in the same report. So the report should contain columns as follows:
    Title
    Update Class
    Bulletin ID
    Date Released/Date Posted 
    Article ID
    Vendor
    Approved
    Installed
    Is Required
    Unique Up[date ID
    The default report shows up all the columns except the date posted. Please help me with a query with which we can get date released with all the other columns.
    Appreciate your help!
    Thanks

    Hi,
    Please refer to the link below:
    Troubleshooting SCCM Software Update Deployment Package distribution due to missing directories
    http://blogs.technet.com/b/ken_brumfield/archive/2013/01/10/troubleshooting-sccm-software-update-deployment-package-distribution-due-to-missing-directories.aspx
    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.

  • Software Updates - Compliance Report Discrepency - Updates Listed in Report that aren't part of the deployment

    I will try to explain this as clearly as I can.  I've been unsuccessful in trying to search for this exact problem.  I've not yet called support on this as it's not critical.
    I recently began to see a problem in that our compliance reports showed two servers as compliance status unknown for an extended period of time.  I made sure they had the most current version of
    the WUA, I re-installed the SCCM agent, I manually applied patches using windows update directly on the machine.  I've tried running the "RefreshSererComplinaceState" vbscript.  However, the same issue persisted.  I also noticed that
    the number of servers listing as compliant and non-compliant remained relatively the same between deployments of
    windows updates.
    I began to research the compliance report "Compliance 1 - Overall Compliance".  I began to see that there were updates listed in the report which do not correspond to updates which are
    members of the deployment.
    Example, The following patch "Update for Windows Server 2008 R2 x64 Edition (KB2800095)" I currently don't have as a member of any of my deployment packages.  It's not a member of any
    of my update groups.  Yet, it's consistently being reported in the list of updates in that update group.  That's one of several like that.  It's not something I've encountered before.
    Is there a way to reset my updates list on the server side the next time I get ready to do updates?

    Hi,
    Here is a good blog discussed the issue:
    http://damatisystemcenter.com/2013/07/21/sccm-client-unknown-status-what-could-be/
    In the meantime, please check UpdatesHandler.log on the client which status show unknown.

  • Software Update Compliance Report in SCCM 2012

    Hi Everyone,
    My question is in sccm 2007 we generate the  compliance report based on update list without downloading the patches just adding the same to update list, However the update list is being replaced by update group in sccm 2012, How can we achieve the same
    in sccm 2012 or do we need to build the custom report if yes please let me know.
    Thanks In Advanced
    ashu Maheshwari

    Because of the retrograde reporting for WSUS data in SCCM, I have the "send info to WSUS" checked on the SUP so I can view data in the old WSUS console. By comparing what computers need how many patches and using the reports in SCCM, you can see massive
    discrepancies in both how many computers need patches and how many patches each computer needs. For example, WSUS will say ComputerA needs 10 patches and SCCM will say it needs 6, or whatever. As far as these two points go, WSUS is far more accurate. 
    I first noticed this months ago.
    I think this is not a matter of how the SCCM queries are written, but because SCCM is far more flaky than WSUS. To me, WSUS is like a good reliable run of the mile car and SCCM is like a race car--powerful but finicky and persnickety. It's harder to get
    clients to fully check in with SCCM. SCCM can do lots but my biggest gripes with it are:
    1) Clients especially flaky and persnickety, one tiny thing gets out of whack and it won't work
    2) WSUS is far more accurate in reporting what patches are needed
    3) For WSUS reporting, they took a lot of WSUS-related/patch reporting out of SCCM, towit you can't get the info you used to be able to get without writing a custom report. This is why you can easily find code samples on the net. And along that point I still
    can't get report builder to work and I don't have another report tool available to me. I know the SQL code samples I have work because I can run the queries in Mgmt Studio.
    Ben JohnsonWY

  • Collection query - software update compliance status

    Hi all,
    I am trying to create a collection to list the computers that reported as unknown state from a specific software update deployment.  The query statement is as follow,
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System  WHERE     SMS_R_System.ResourceID IN (    
    SELECT        SMS_UpdateComplianceStatus.MachineID     FROM         SMS_UpdateComplianceStatus        JOIN SMS_UpdateDeploymentSummary          
    ON SMS_UpdateComplianceStatus.CI_ID = SMS_UpdateDeploymentSummary.CI_ID     WHERE        SMS_UpdateComplianceStatus.Status = 0        AND SMS_UpdateDeploymentSummary.AssignmentName
    = "SUG_2013-00_All_FINAL")
    As far as I I understand, the status code 0 is unknown (I may be wrong on this one); 2 is non-compliant.  But the statement above does not return anything computers, while if I change SMS_UpdateComplianceStatus.Status = 2 and it returns the matched
    numbers as I run the compliance 7 report.
    Can you guys please take a look at this query statement and let me know the correct status number that I should punch in to return the computers that are unknown status.
    Thanks,
    Jimmy

    According to
    this post, you're right about value 0.  But if you look in the database at the v_Update_ComplianceStatus view, do you have any zeros?  I checked mine, and I don't - all 2's and 3's, so I wonder if you just don't have any in the table?

  • How can you see Software Update compliance breakdown by Client?

    I want to see a view in the Software Library that breaks down by client what is shown in the "All Software Updates" node.
    Basically, with SCCM 2012 you can see all the software updates and there compliance summary which is nice, however I can't find a way to see a detailed version of this that breaks this all down by client.  
    For example if I have a Software Update that is Required on 5, Not Required on 3, Installed on 4, and Unknown on 2 clients I want to know which specific clients make up those numbers. I want to know which clients are required, which are not required, which
    are already installed and which are unknown.
    There doesn't seem to be a view like this in SCCM 2012 and its very odd that it doesn't provide this look into the data.
    Am I missing something, can someone point me to the way to see this data quickly.

    I am aware of that view however that is just mapping the state number to a name for several different "TopicTypes". And the one you are point to is actually not for Software Updates Scan Status. The TopicType for a Clients Update Scans is 500,
    which has 0-3 only. 0 is supposed to be Unknown, 1 not-required, 2 required, and 3 installed.
    They set the status for an endpoint/update for 2 and 3 but I have several Unknown, and Not-Required and they don't write those rows to the database if they are in that state. 
    It seems when they are gathering data from the client the summarize everything, and one keep the specific rows for clients if they are required or installed, and they don't create a row for the other states. From some digging it looks like they stored this
    data in 2007, but dropped in in 2012.  
    Maybe it is to conserve space or something I don't know but its stupid. It would be nice if there was a hidden setting that would enable it to store these rows as the database is set to collect them, they just don't.
    FYI...
    For WMI Queries you can use SMS_StateInformation which maps to the v_StateNames.

  • Software update 1.2 Issues

    Hi, wondering if anyone else is haviing this problem (as it is a PAIN)
    recently updated to iTunes 7 and iPod software version 1.2 and everytime I now connect either of my iPods (Video or Mini) it keeps giving me an error message that "the iPod xxx cannot be updated as files are in use", even though it has already been updated. Went through the 5R's.. still having the same issue ... is this just a glitch with 1.2?

    FOrmat ur iPod on My Computer..
    right click the removable disk that is your iPod...
    wait....
    then select FORMAT
    after completing the format, a message will appear that it is formatted..(DONT CLICK OK ON THAT MESSAGE FIRST)
    then open the iPod software Updater 2006-6-28...
    and the time you open it, the RESTORE button should be available..
    RESTORE IT...
    SYNC YOUR FILES...USING iTunes 7
    and NEVER UPDATE YOUR iPod TO 1.2
    it'll cause headaches.
    ive updated mine w/ 1.2 and suffering now...
    it has problems with syncing like,
    iPod update is complete,,,,but
    OK to disconnect message will not appear....
    i didnt changed my settings ever since i bought it...
    it automatically syncs and OK to disconnect message appears...
    BUT NOW! when i updated it to 1.2,,the ok to disconnect message wont appear!
    NEVER UPDATE IT TO 1.2!

  • After Software Update, USB Power Issues and Cursor Freezing

    I have a 1.8 dual g5. After the latest software update I experienced some seriously quirky usb power fluctuations, a card reader frying and sudden, but temporary, mouse cursor freezing. I did some research and went for a clean install from original Leopard disc and downloaded the combo update 10.5.2 from apple support. I then restarted in "safe mode" and ran the 10.5.2 update, restarted, zapped the pram, restarted to disc warrior to repair permissions and clean the drive... then restarted again. Same deal: Spinning lines on gray 1-2 minute. black (sometimes white) screen 3-5 minutes. blue screen 1-2 minutes. log in.
    Tried cocktail, disc utility permission repair and removing log-in applications/drivers. Same deal... ****** computing. I feel like it's 1999 all over again.
    Cost me three full days work so far under a very tight deadline and a lot of stress..... Apple is 100% responsible for this messy release and needs to address it quickly.

    My problem is similar to the others already posted, but quite different too. Perhaps someone else has had this strange issue occur. I attach my nike+ receiver and set my workout as usual, and then I come to selecting playlists. I select my playlist (which is titled running) and my work out starts. HOWEVER, the playlist that I selected plays music from another playlist such as sarah mclachlan (which is not in my running playlist). I have tried everything that you guys already posted short of doing a restore. Any thoughts? I posted this same question on the nikeplus.com web forum but no one has replied. I can find no sequence to the playlist malfunction. For example say I choose to play my sarah mclachlan playlist it will play my irish playlist instead and so forth. Make sense? HELP!!!!!

  • Software Update Compliance Status Showing Wrong

    Greetings,
    When reviewing software updates in the Software Library I noticed that one of them seems to be "stuck" with old information. It is showing the summarization results from a time in the past where it was correct, however it is no longer correct but
    it will not update to show the correct states.
    In short an update is showing as INSTALLED on several clients where it is clearly not installed.  I have verified the WindowsUpdate.log file with debug/verbose logging and on each client it reports as well that it is not installed. 
    Not sure how an update gets "stuck" on its states, but if there was a way to "reset" and update and have it place all the clients back in unknown and then allow for all the clients to refresh that would be great. Because no amount for
    forcing the scans and summarizations seems to make the update unstuck.

    No they are also wrong, I checked the DB tables and views which match the UI and Reports. Which is why I call it being "stuck" in an old state. The endpoints are running scans and their results are correct however either they are not getting up to the
    server or they are and the server is ignoring them.  The only odd thing is the other updates are correct. This could be meaningless because they were correct at the time the others got stuck with wrong info. So they all may actually be stuck in the old
    state.

  • Software Updates deployment report

    Hi folks,
    In case of customer requesting a report to know what's the status of Security Updates for Jan 2014 (e.g for Windows 7 product only), which report should be sent?
    Is it:
    1. Compliance report
    2. Enforcement report
    Sometimes I can't differentiate between these 2 reports. Needs some enlightenment from you all.
    Thank you!
    ---Pat

    Compliance report will breakdown the report by each of the updates deployed according to its update list.
    While Enforcement report will sum up every updates in a deployment package into 1 report, am i correct?
    ---Pat

  • IPhone 4 software update and Video issues.

    I have the most current software update done on my iPhone 4. Since I have done this I have come to realize that all of the videos that I have taken since the update will show a blank screen when I try to send them in any form email, text, facebook. What can I do to solve this issue? Anyone?

    READ the instructions in the link from which you posted.
    It clearly states how to upgrade directly from the device (if running iOS5 or higher) or how to upgrade from iTunes on the computer if running iOS 4.
    Also, update iTunes on your computer, iOS6 requires iTunes version 10.6 or higher.

  • Apple Software Update Blank List Issue

    Hello,
    I am experiencing a wide-spread issue with apple software update on windows. In an attempt to update itunes and quicktime, apple software update is run but comes up with a blank list (see figure 1). This has happened on 3 machines that were freshly imaged (with an older version of itunes), and 5 machines that have been in use for months/years. Operating systems include windows vista, 7 and 8 Release Preview; they all have varying internal specifications.Some computers are x32 others are x64. I have also had a friend who is outside of the network system the other mentioned computers are in, in an attempt to use software update. He came across the same results. Also as a note, the current versions of itunes that are being targeted to be updated range from 10.5 to 10.6.1.7.
    I have attempted running a repair on apple software update on one machine, with no change.
    Has anyone else experience this issue? I see one other similar discussion post at the moment found here: https://discussions.apple.com/message/18688827#18688827
    But no where else am I seeing mention of issues of this sort.
    Thanks for any input!
    -Rob

    I FIXED IT!! I can't believe it . I actually figured out how to make it work(well sort of). My Apple Software Updater now works (almost) perfectly and I just successfully downloaded and installed itunes 10.6.3.25 through it!!!
    Ok , the way I see it, either the latest itunes update or the recent Windows Patch Tuesday on June 12th, 2012 must have inadvertently removed the Administrative Rights from the Apple Software Update Tool .lnk file.
    So you must go to where the file resides on your hard drive - for me that was C:\Program Data\Microsoft\Windows\Start Menu\Programs - Right click on the Apple software Tool icon and choose properties. Click on the compatibility tab. At the bottom of this tab click on "change settings for all users" and hit Yes at the UAC pop-up. Now make sure you place a check in the "Run this program as Administrator" under the Privilege level section at the bottom. Hit Apply and then OK. The hit Ok again to get off the properties pop-up.
    When I went back and clicked on the Apple Software Update shortcut, I got a UAC pop-up asking me if I wanted to proceed(something I had always, in the past, gotten but haven't since this problem started). The Apple Software Update tool came up and to my suprise the progress bar STAYED and started to slowly fill up partially with the green progress bar. Viola, the itunes 10.6.3 update showed up on the top part of the screen as a new update needing to be installed - the bottom screen, as usual, had the changelog info for the 10.6.3 update. I clicked on install and , again, Viola. the update downloaded and installed flawlessly. I had to reboot my computer and when it restarted, itunes was working perfectly and it was correctly showing as itunes v10.6.3.25.
    I say it is almost or sort of fixed because when you click on the Apple Software Update shortcut after the 10.6.3 install it goes back to doing the same thing it did before(i.e. processing for a second and then saying there are new updates but showing a blank field). Maybe this is the way the software now looks if there are no updates available to install - maybe Apple is working on this to eventually get it back to normal. All I know is the process I outlined above worked for me(at least to get the ASU to recognize and properly download and install itunes 10.6.3). It's certainly not perfect, but it worked. Please try this method and let me know what results you have with it. Good luck.

  • FCP 4.5 HD software update gives licensing issue

    Please Help,
    I am using FCP 4.5HD and have just done the normal softare updates - now when i try to start the app i get a licensing dialogue box - it shows my correct name and serial number but wont let me press OK and only the quit button is pressable.
    (have already tried the sudo option in terminal as suggested in some other similar posts but does not change anything)

    Simon, I have been having the same problem when i try to export using the compressor. It tells me I need a AGP Graphics card... the same problem that arose when i first installed FCP4.5 on my new computer with Tiger OS. I got around that by rescripting the infoplist to read 'PCI' rather than 'AGP' on startup. It seems I have to find a way around the compressor looking for the the older AGP graphics card. Any ideas?

  • Best practice in getting compliance rates of Software Update Deployments

    Hi,
    Would like to ask around on how others generate reports about software update deployment compliance. What do you use to get this report? Are there best practices for gathering software update compliance reports?

    There is not really a best-practice on reports that you need to use for compliancy on software updates. One of the reports I often use to check the compliancy is
    Compliance 1 - Overall compliance as it provides a good overview of a specific collection for an update group. For more details you can use
    Compliance 3 - Update group (per update).
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • SCCM 2012 Software updates

    Hi All,
    We have SCCM 2012 R2 Server, We have been using more than a years ,
    Now im facing crazy issues .
    1.every month we using sccm server for deploying windows patches  .
    2.before patching we set maintenance schedules for device group.
    3.patch deployment is working fine without any issues and we get the success 100 % compliants report in all the server .
    Note:- but after one or two months later  in Monitoring-->deployment tab-->its showing only few machines success results or deploying again old package''
    this process is keep on rotating in all the deployment .
    how to resolve this issues.
    Regards,
    Velu M

    Hi,
    You could try to initiate Software Updates Deployment Evaluation Cycle action from a problematic client, then check CIAgent.log, StateMessage.log to see if there are any helpful information.
    Reference:
    SCCM state messaging–in depth:http://blogs.msdn.com/b/steverac/archive/2011/01/07/sccm-state-messaging-in-depth.aspx
    You could also follow the steps in the blog below to check state messages in WMI.
    Software Update Compliance Reports – Detection State Unknown
    http://blogs.technet.com/b/configmgrdogs/archive/2013/11/07/software-update-status-reports-detection-state-unknown.aspx
    Best Regards,
    Joyce
    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.

Maybe you are looking for

  • Problem with PhPmyadmin and Pfadmin

    I have some Problem loading some Websites, i think its more a domain problem, following: If I want to load my Website in Firefox beta (latest), works, if I want to access phpmyadmin or pfadmin, it cant find anything, if I type in the IP it works, but

  • I have a new computer, how do I open my firefox with my settings

    My old computer crashed so I cannot just sync a new device. I have Firefox on my new computer already but without any of my settings, bookmarks, or history. How can I download my firefox account onto my new computer ?

  • Deductions not posting to the Customer account

    Hello Everyone, I am doing testing for Lockbox and having issues with customer deductions. when I upload a Lockbox file into SAP it properly identifies the various line items based on the invoice numbers but our customers sometimes include deductions

  • Cant get finder to run

    Hello, I have a black macbook which I bought a while ago (more than a year) and in december I installed leopard. It runs great but I realized it made my computer a bit slower, when I started the computer it took an unusual amount of time for the bar

  • I purchased a ringtone for an i phone 6 and now can't find it

    i purchased a ringtone for an i phone 6 it worked once and now its off it doesn't show up in the ringtones section in the phone and its showing that I've bought ?