Need report to list the system name, client status, client version, OU name info for a particular collection of systems

Hi Friends,
Need report to list the system name, client status, client version, OU name info for a particular collection of systems.
Please help as it would be appreciated much as i am not familiar with creating custom reports in SCCM. Thanks.
Regards,
Thangaraj

Select v_R_System.Name0, v_R_System.Client_Version0, v_RA_System_SystemOUName.System_OU_Name0,
case when v_R_System.Client0 = '1' then 'Client is Installed'
else 'Client Not Installed'
end as 'Client Status'
FROM v_R_System JOIN v_RA_System_SystemOUName ON v_R_System.ResourceID = v_RA_System_SystemOUName.ResourceID WHERE System_OU_Name0 LIKE '%HR'
John Marcum | Microsoft MVP - Enterprise Client Management
My blog: System Center Admin | Twitter:
@SCCM_Marcum | Linkedin:
John Marcum

Similar Messages

  • I Need interactive report to list the purchase orders details for a vendor

    I Need interactive report to list the purchase orders details for a vendor that has    interactive drill down options to give the detail of vendor from vendor master.

    Hi
    see this sample report
    this is Customer wise sales orders
    just make similar report just using LFA1, EKKO and EKPO tables instead of KNA1,VBAK,VBAP
    REPORT ZTEJ_INTAB1 LINE-SIZE 103 LINE-COUNT 35(5) NO STANDARD PAGE
    HEADING.
    *TABLES DECLARATION
    TABLES : KNA1, VBAK, VBAP.
    *SELECT OPTIONS
    SELECT-OPTIONS: CUST_NO FOR KNA1-KUNNR.
    *INITIALIZATION
    INITIALIZATION.
    CUST_NO-LOW = '01'.
    CUST_NO-HIGH = '5000'.
    CUST_NO-SIGN = 'I'.
    CUST_NO-OPTION = 'BT'.
    APPEND CUST_NO.
    *SELECTION SCREEN VALIDATION
    AT SELECTION-SCREEN ON CUST_NO.
    LOOP AT SCREEN.
    IF CUST_NO-LOW < 1 OR CUST_NO-HIGH > 5000.
    MESSAGE E001(ZTJ1).
    ENDIF.
    ENDLOOP.
    *BASIC LIST SELECTION
    START-OF-SELECTION.
    SELECT KUNNR NAME1 ORT01 LAND1 INTO
    (KNA1-KUNNR, KNA1-NAME1,KNA1-ORT01,KNA1-LAND1)
    FROM KNA1
    WHERE KUNNR IN CUST_NO.
    WRITE:/1 SY-VLINE,
    KNA1-KUNNR UNDER 'CUSTOMER NO.' HOTSPOT ON,
    16 SY-VLINE,
    KNA1-NAME1 UNDER 'NAME',
    61 SY-VLINE,
    KNA1-ORT01 UNDER 'CITY',
    86 SY-VLINE,
    KNA1-LAND1 UNDER 'COUNTRY',
    103 SY-VLINE.
    HIDE: KNA1-KUNNR.
    ENDSELECT.
    ULINE.
    *SECONDARY LIST ACCESS
    AT user-command.
    IF SY-UCOMM = 'IONE'.
    PERFORM SALES_ORD.
    ENDIF.
    IF SY-UCOMM = 'ITWO'.
    PERFORM ITEM_DET.
    ENDIF.
    *TOP OF PAGE
    TOP-OF-PAGE.
    FORMAT COLOR 1.
    WRITE : 'CUSTOMER DETAILS'.
    FORMAT COLOR 1 OFF.
    ULINE.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'CUSTOMER NO.',
    16 SY-VLINE,
    18 'NAME',
    61 SY-VLINE,
    63 'CITY',
    86 SY-VLINE,
    88 'COUNTRY',
    103 SY-VLINE.
    ULINE.
    FORMAT COLOR 3 OFF.
    *TOP OF PAGE FOR SECONDARY LISTS
    TOP-OF-PAGE DURING LINE-SELECTION.
    *TOP OF PAGE FOR 1ST SECONDARY LIST
    IF SY-UCOMM = 'IONE'.
    ULINE.
    FORMAT COLOR 1.
    WRITE : 'SALES ORDER DETAILS'.
    ULINE.
    FORMAT COLOR 1 OFF.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'CUSTOMER NO.',
    16 SY-VLINE,
    18 'SALES ORDER NO.',
    40 SY-VLINE,
    42 'DATE',
    60 SY-VLINE,
    62 'CREATOR',
    85 SY-VLINE,
    87 'DOC DATE',
    103 SY-VLINE.
    ULINE.
    ENDIF.
    FORMAT COLOR 3 OFF.
    *TOP OF PAGE FOR 2ND SECONDARY LIST
    IF SY-UCOMM = 'ITWO'.
    ULINE.
    FORMAT COLOR 1.
    WRITE : 'ITEM DETAILS'.
    ULINE.
    FORMAT COLOR 1 OFF.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'SALES ORDER NO.',
    40 SY-VLINE,
    42 'SALES ITEM NO.',
    60 SY-VLINE,
    62 'ORDER QUANTITY',
    103 SY-VLINE.
    ULINE.
    ENDIF.
    FORMAT COLOR 3 OFF.
    *END OF PAGE
    END-OF-PAGE.
    ULINE.
    WRITE :'USER :',SY-UNAME,/,'DATE :', SY-DATUM, 85 'END OF PAGE:',
    SY-PAGNO.
    SKIP.
    *& Form SALES_ORD
    *& FIRST SECONDARY LIST FORM
    FORM SALES_ORD .
    SELECT KUNNR VBELN ERDAT ERNAM AUDAT INTO
    (VBAK-KUNNR, VBAK-VBELN, VBAK-ERDAT, VBAK-ERNAM, VBAK-AUDAT)
    FROM VBAK
    WHERE KUNNR = KNA1-KUNNR.
    WRITE:/1 SY-VLINE,
    VBAK-KUNNR UNDER 'CUSTOMER NO.' HOTSPOT ON,
    16 SY-VLINE,
    VBAK-VBELN UNDER 'SALES ORDER NO.' HOTSPOT ON,
    40 SY-VLINE,
    VBAK-ERDAT UNDER 'DATE',
    60 SY-VLINE,
    VBAK-ERNAM UNDER 'CREATOR',
    85 SY-VLINE,
    VBAK-AUDAT UNDER 'DOC DATE',
    103 SY-VLINE.
    HIDE : VBAK-VBELN.
    ENDSELECT.
    ULINE.
    ENDFORM. " SALES_ORD
    *& Form ITEM_DET
    *& SECOND SECONDARY LIST FORM
    FORM ITEM_DET .
    SELECT VBELN POSNR KWMENG INTO
    (VBAP-VBELN, VBAP-POSNR, VBAP-KWMENG)
    FROM VBAP
    WHERE VBELN = VBAK-VBELN.
    WRITE : /1 SY-VLINE,
    VBAP-VBELN UNDER 'SALES ORDER NO.',
    40 SY-VLINE,
    VBAP-POSNR UNDER 'SALES ITEM NO.',
    60 SY-VLINE,
    VBAP-KWMENG UNDER 'ORDER QUANTITY',
    103 SY-VLINE.
    ENDSELECT.
    ULINE.
    ENDFORM. " ITEM_DET
    REPORT demo_list_at_pf.
    START-OF-SELECTION.
    WRITE 'Basic List, Press PF5, PF6, PF7, or PF8'.
    AT pf5.
    PERFORM out.
    AT pf6.
    PERFORM out.
    AT pf7.
    PERFORM out.
    AT pf8.
    PERFORM out.
    FORM out.
    WRITE: 'Secondary List by PF-Key Selection',
    / 'SY-LSIND =', sy-lsind,
    / 'SY-UCOMM =', sy-ucomm.
    ENDFORM.
    After executing the program, the system displays the basic list. The user can press the function keys F5 , F6 , F7 , and F8 to create secondary lists. If, for example, the 14th key the user presses is F6 , the output on the displayed secondary list looks as follows:
    Secondary List by PF-Key Selection
    SY-LSIND = 14
    SY-UCOMM = PF06
    Example for AT USER-COMMAND.
    REPORT demo_list_at_user_command NO STANDARD PAGE HEADING.
    START-OF-SELECTION.
    WRITE: 'Basic List',
    / 'SY-LSIND:', sy-lsind.
    TOP-OF-PAGE.
    WRITE 'Top-of-Page'.
    ULINE.
    TOP-OF-PAGE DURING LINE-SELECTION.
    CASE sy-pfkey.
    WHEN 'TEST'.
    WRITE 'Self-defined GUI for Function Codes'.
    ULINE.
    ENDCASE.
    AT LINE-SELECTION.
    SET PF-STATUS 'TEST' EXCLUDING 'PICK'.
    PERFORM out.
    sy-lsind = sy-lsind - 1.
    AT USER-COMMAND.
    CASE sy-ucomm.
    WHEN 'FC1'.
    PERFORM out.
    WRITE / 'Button FUN 1 was pressed'.
    WHEN 'FC2'.
    PERFORM out.
    WRITE / 'Button FUN 2 was pressed'.
    WHEN 'FC3'.
    PERFORM out.
    WRITE / 'Button FUN 3 was pressed'.
    WHEN 'FC4'.
    PERFORM out.
    WRITE / 'Button FUN 4 was pressed'.
    WHEN 'FC5'.
    PERFORM out.
    WRITE / 'Button FUN 5 was pressed'.
    ENDCASE.
    sy-lsind = sy-lsind - 1.
    FORM out.
    WRITE: 'Secondary List',
    / 'SY-LSIND:', sy-lsind,
    / 'SY-PFKEY:', sy-pfkey.
    ENDFORM.
    When you run the program, the system displays the following basic list with a the page header defined in the program:
    You can trigger the AT LINE-SELECTION event by double-clicking a line. The system sets the status TEST and deactivates the function code PICK. The status TEST contains function codes FC1 to FC5. These are assigned to pushbuttons in the application toolbar. The page header of the detail list depends on the status.
    Here, double-clicking a line no longer triggers an event. However, there is now an application toolbar containing five user-defined pushbuttons. You can use these to trigger the AT USER-COMMAND event. The CASE statement contains a different reaction for each pushbutton.
    For each interactive event, the system decreases the SY-LSIND system field by one, thus canceling out the automatic increase. All detail lists now have the same level as the basic list and thus overwrite it. While the detail list is being created, SY-LSIND still has the value 1.
    Regards
    Anji

  • Daily check report to list the vendor name, material, quantity

    hi friends,
    can you help me to write daily check report to list the vendor name, materials and quanitity?
    thanks in advance

    HI ,
    What do you mean my daily check report..
      Do you want to see the status of the PO sent to a Vendor on a daily basis..
    Thanks
    Mahesh

  • UMX Roles - Is there a report which lists the roles created through UMX

    Hi
    Are there any reports available which will detail the roles created in User Management. We need a listing of the roles created by categories.
    tia
    Kumar

    Hi,
    If you are on 11i, there is no seeded report to list the roles -- Query the tables listed in "Oracle Application Object Library Release Notes, Release 12.1.1 [ID 566521.1]", under "3.8 Oracle User Management - SOX Compliance RBAC Reports" to get those details.
    The (List of Users"/" List of Roles/Responsibilities"/"List of Functions/Permissions"/"List of Data Security Objects) is only available in 12.1.1 and above.
    Thanks,
    Hussein

  • I'm converting from a PC to  iMac. On the PC I have many Inbox folders with PR info for distribution. How do I get these folders from the PC to the iMac?

    I'm converting from a PC to  iMac. On the PC I have many Inbox folders with PR info for distribution. How do I get these folders from the PC to the iMac? I've used the Windows e mail Inbox folders for an easy access filing cabinet for years, as this all goes out on e mail. Thanks for assisting me!

    I think the easiest way would be to use Migration Assistant to get all that over...
    http://support.apple.com/kb/HT2518
    http://support.apple.com/kb/DL1415

  • Generating annual report and list the data into JTable

    Hi, I am stuck with my project. I know that my logic is wrong, but I couldn't figure out the solution. Please help me.
    I hava a database, one of the table is the booking information.
    I need to generate a report which shows the number of booking for each companies for each month.
    I have three data in my database, two different companies(XX and YY), with three different months(Jan, Feb, Jul).
    The problem that I encountered is that the data shown is inaccurate. It showed 6 rows of data, and the number of booking is incorrect.
    It showed :
    Company Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
    XX 1 0 0 0 0 0 0 0 0 0 0 0
    XX 1 1 0 0 0 0 0 0 0 0 0 0
    YY 1 1 0 0 0 0 1 0 0 0 0 0
    How can I loop for different companies and add the number of booking each time and get the right output as follows?
    Company Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
    XX 1 1 0 0 0 0 0 0 0 0 0 0
    YY 0 0 0 0 0 0 1 0 0 0 0 0
    This is my partial code:
    ArrayList stringList = dao.retrieveAllBooking();
    for (int i = 0; i < stringList.size(); i++) {
    ab = (AllBooking) stringList.get(i);
    d = ab.getDATE_OF_USE_TO();
    StringTokenizer ss = new StringTokenizer((String) d, "/");
    String day = ss.nextToken();
    String month = ss.nextToken();
    String year = ss.nextToken();
    Org = o.getORG_ID();
    if(month.equals("JAN")){
    JanDR++;
    if(month.equals("FEB")){
    FebDR++;
    if(month.equals("MAR")){
    MarDR++;
    if(month.equals("APR")){
    // Apr = ab.getNO_OF_REQ();
    AprDR++;
    if(month.equals("MAY")){
    //MayDR = ab.getNO_OF_REQ();
    MayDR++;
    if(month.equals("JUN")){
    // Jun = ab.getNO_OF_REQ();
    JunDR++;
    if(month.equals("JUL")){                               
    JulDR++;
    if(month.equals("AUG")){
    AugDR++;
    if(month.equals("SEP")){
    SepDR++;
    if(month.equals("OCT")){
    OctDR++;
    if(month.equals("NOV")){
    NovDR++;
    if(month.equals("DEC")){
    DecDR++;
    Object[] data={Org,JanDR, FebDR, MarDR, AprDR, MayDR, JunDR, JulDR, AugDR, SepDR, OctDR, NovDR, DecDR, JanSR, FebSR, MarSR, AprSR, MaySR, JunSR, JulSR, AugSR, SepSR, OctSR, NovSR, DecSR};
    tableModel.addRow(data); //add the data to the table.
    I'll appreciate for your help. Thanks.

    Off hand, it appears perhaps under certain circumstances you need to insert a new record, whereas under other circumstances you need to update (that is to say modify) the record by retrieving it, changing it, then updating it. If you pepper your code with System.out.println() statements, you can see where your problems occur in the code.
    I say you may have inserted a record instead of updated due to your statement here. Looks like XX should have been one record rather than two.
    Got:
    XX 1 0 0 0 0 0 0 0 0 0 0 0
    XX 1 1 0 0 0 0 0 0 0 0 0 0
    YY 1 1 0 0 0 0 1 0 0 0 0 0
    Expected:
    XX 1 1 0 0 0 0 0 0 0 0 0 0
    YY 0 0 0 0 0 0 1 0 0 0 0 0

  • I need help to deliver the finished project to our client.

    I can't deliver the finish project to our client and could use some help. Here is the problem:
    I edited a 30 minute show with Premiere 1.5 (and Aspect 3.4, 1440 X 1080P) with many blue and green screen keying effects. Whenever I try to export to DVD in high resolution out put I get a memory error half way through the rendering. As a result I have had to export using the low resolution option which looks awful.
    Finally, after having tried to add memory sticks (I now have 4 giga) and reinstalling Premiere on a new drive and even turning off the double monitor system I still get the memory error. My gut feeling is that this is due to the fact I shot the show in 25P and Premiere has problems converting 25P to regular Pal.
    Anyways, finally to solve the problem, I installed Premiere CS3 and Aspect 5.4 and tried opening the project. Here I ran into two problems: (1) The green screen keying effect is not recognized by CS3 (as only Premiere 1.5 does both blue and green screen Keying) and (2) there is no direct way to export to DVD.
    So I have a client who wants the finished product in quality resolution on a DVD, and I can't provide it. This is really annoying.
    If anybody can help me out on how to get the show out on DVD with a 2 pass high quality export it would be very helpful. Thank you.

    1. If you insist on keying in Pr; use the color or chroma key. If you want a quality product use a compositor like AE to do your keying.
    2. Export to Encore

  • Need help to check the software update deployment status before restart the VM

    Hello,
    I'm just trying to automate the windows patch deployment for several VM's, I build the entire logic like below,
            Deploy software update --> wait for sometime-->Restart --> Check deployment status(collection = iscomplaint) -->stop
    I know here I'm missing the logic of not checking the patch deployment status before restarting, Can someone help here plz?
    Regards,
    Julie

    Hello
    you can configure a loop for your Activity " Get deployment status(filtered the collection name " until status is succeeded, failed with an embedded loop: http://technet.microsoft.com/en-us/library/hh403826.aspx
    Regards,
    Stefan
    www.sc-orchestrator.eu ,
    Blog sc-orchestrator.eu

  • Outlook 2007 Clients Cannot Access Free/Busy Calendar info. for Exchange 2010 Mailbox

    Hi:
    I have Outlook 2007 clients that cannot access Free/Busy Calendar info. for Exchange 2010 mailboxes.  They receive error like "...you do not have appropriate permissions..."
    If those same users logon to a machine running Outlook 2010 then they can view the free/busy info. of the other user's mailbox, so I believe the permissions are set correctly on the mailbox to allow the viewing.
    Any insights are greatly appreciated!
    Thank you!
    Bob Herman IT Tropolis

    Hi Herman,
    As you said, it seems users have proper permissions on mailbox.
    Please make sure users has Reviewer permission on Outlook 2007.
    Please try to run Outlook 2007 under safe mode or re-create profile.
    Also try to turn Outlook 2007 to Exchange Online mode from Cached mode.
    Thanks
    Mavis Huang
    TechNet Community Support

  • Need Report to List of NON Active Recourse

    Hi
    I need some Report in SAP ME which can give me the List of NON Active Recourse in particular site 
    Thanks

    Hi!
    You may consider a customization that utilize RESOURCE_TIME_LOG table for report if base Resource Utilization reports do not fit your needs (see activities TR735, TR740, TR750).
    Regards,
    Alex.
    Edited by: Alexander Teslyuk on Aug 11, 2011 1:17 PM

  • Report to list the Single Roles contained in each Composite Role...

    Hi, 
    Can someone tell me how I can produce a report in a 4.6C system that shows the Single rolse contained in all Composite roles?
    Thanks
    Sharon

    Hi Jurjen,
    Thankyou for that.
    Can you also tell me what the difference is between a "Composite role, Indirect (HR)" and a "composite Role"?  (I see these two Activity Group Types when running a report in SUIM to list users and their activity groups).
    Thanks
    S

  • Report that lists the last Public Response on a ticket

    Does anyone have a report that they would share that shows all open tickets with the last Public Response made on the ticket?  A ticket might have several internal notes added to it, but I only need the last Public Response comment to show.  Thanks.
    William
    This topic first appeared in the Spiceworks Community

    Hi,
    The following thread may get you start.
    http://social.technet.microsoft.com/Forums/systemcenter/en-US/559e8ae9-15bb-482f-8981-535e0f77b01f/sccm-queries-of-ad-groups
    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.

  • Consumer Report Also List the iPhone 4 as BEST current smartphone

    Could we remember that a little. Please?
    http://bit.ly/btmUPX

    Except no one has to pay for that crap:
    http://digitaldaily.allthingsd.com/20100712/consumer-reports-by-the-way-the-ipho ne-4-is-also-the-best-smartphone-on-the-market/

  • Help! Need BC to set the master opt-in status on our site!

    We are in a pickle.
    We did not realize that the default was set to not opt-in our customers automatically!
    We just sent out an email campaign and a few hundred customers did not received it. YIKES.
    Can someone set the master opt-in on our site and opt-in our entire database at the same time???

    Or Live Chat at < http://helpx.adobe.com/contact.html?product=business-catalyst&topic=using-my-product-or-se rvice > and click on "I still need help…" and then "Chat now".
    Thanks,
    Sanjit

  • I tried buying the iPhone online and after I punched in my info for credit check, there was an error processing it. Does it have to do with my credit??

    I'm really confused on why I couldn't get it processed :/

    a) how should we know? This is a user to user forum.
    b) This forum is for using iPhones in an enterpirse (corporate) environment.

Maybe you are looking for