Driver Details of PC's reporting to SCCM

Hello Guys,
Can you please help me with SQL Query to get the driver version details installed on PC?
Thanks in Advance :)
Mukhyaprana

If you are not seeing it within resource explorer then you will first need to collect the data. This might not be a simple task. Exactly how would you manually collect this data? From this you can try to automate the data collection.
http://www.enhansoft.com/

Similar Messages

  • How to get Detailed Vendor Payable Aging Report?

    Hi, Experts,
    I was trying to find the Detailed Vendor Payable Aging Report. I went to Financials -> Financial Reports -> Accounting -> Aging -> Vendor Liabilities Aging
    I could not find the detailed information: what invoices are still open.
    Thanks!
    Lorrie

    Dear Lorrie,
    When you are in the Vendor Aging Report Window; please click on the Vendor Row for which you want to see the Open Invoices/Documents.
    You can get the Open Documents details through this.
    Regards,
    Jitin

  • My ipod shuffle needs to be formatted, and my computer doesn't recognize device, i checked into the driver details and it says that no drivers are downloaded is there a fix for this?

    i really need help with this please

    Where do you see these "driver details"?  Is this via Device Manager?
    Did this iPod previously work with this PC before or is the first time you are trying to connect it?
    B-rock

  • How to track personal details changes in the report without using triggers on the database tables

    Hi There,
    I'm having a requirement to track the oracle HRMS Personal details changes in the report not using the triggers.
    ex: if some changes the address of the person, then that changed values should be populated in the report.
    Please find below query:
    If any of the following columns data is updated, the new value should be populated in the report.
    SELECT PAPF.PERSON_ID                                                       PAPF_PERSON_ID
    ,      PAPF.EMPLOYEE_NUMBER                                               EMPLOYEE_NUMBER        
    ,      PAPF.FIRST_NAME                                                            FIRST_NAME   
    ,      PAPF.LAST_NAME                                                            LAST_NAME
    ,      TO_CHAR(PAPF.DATE_OF_BIRTH ,'DD-MON-YYYY')     DATE_OF_BIRTH
    ,      ADDR.ADDRESS_LINE1                                                   ADDRESS_1
    ,      ADDR.ADDRESS_LINE2                                                   ADDRESS_2
    ,      ADDR.ADDRESS_LINE3                                                   ADDRESS_3
    ,      ADDR.TOWN_OR_CITY                                                    TOWN
    ,      ADDR.REGION_1                                                              COUNTY
    ,      ADDR.POSTAL_CODE                                                     POST_CODE
    ,      ADDR.COUNTRY                                                              COUNTRY
    ,      PAY.PAYROLL_NAME                                                     PAYROLL_NAME
    ,      PLN_TYP.NAME                                                              PLAN_TYP
    ,      PLN.NAME                                                                     PRODUCT_NAME
    ,      BOF.NAME                                                                     COVERAGE
    FROM   PER_ALL_PEOPLE_F                                                PAPF
    ,      PER_ALL_ASSIGNMENTS_F                                          PAF
    ,      PER_ADDRESSES                                                        ADDR
    ,      PAY_PAYROLLS_F                                                       PAY
    ,      BEN_PRTT_ENRT_RSLT_F                                                 PEN
    ,      BEN_PL_TYP_F                                                         PLN_TYP
    ,      BEN_PL_F                                                             PLN
    ,      BEN_OIPL_F                                                           BOIPF
    ,      BEN_OPT_F                                                            BOF
    WHERE 1                                     = 1
    AND PAPF.PERSON_ID                          = PAF.PERSON_ID
    AND TRUNC(SYSDATE)                          BETWEEN PAPF.EFFECTIVE_START_DATE AND PAPF.EFFECTIVE_END_DATE
    AND TRUNC(SYSDATE)                          BETWEEN PAF.EFFECTIVE_START_DATE AND PAF.EFFECTIVE_END_DATE
    AND PAPF.PERSON_ID                          = ADDR.PERSON_ID
    AND ADDR.PRIMARY_FLAG                       = 'Y'
    AND ADDR.DATE_TO                            IS NULL
    AND PAF.PAYROLL_ID                          = PAY.PAYROLL_ID(+)
    AND PEN.PERSON_ID                           = PAPF.PERSON_ID
    AND PEN.BUSINESS_GROUP_ID                   = PAPF.BUSINESS_GROUP_ID
    AND TRUNC(SYSDATE)                          BETWEEN TRUNC(PEN.EFFECTIVE_START_DATE) AND TRUNC(PEN.EFFECTIVE_END_DATE)
    AND PEN.PRTT_ENRT_RSLT_STAT_CD              IS NULL
    AND PEN.SSPNDD_FLAG                         = 'N'
    AND ( PEN.ENRT_CVG_THRU_DT                  >= TRUNC(SYSDATE)
    OR    PEN.ENRT_OVRIDN_FLAG                  = 'Y')
    AND EXISTS(SELECT PIL.PER_IN_LER_ID
               FROM   BEN_PER_IN_LER PIL
               WHERE  PIL.PER_IN_LER_ID         = PEN.PER_IN_LER_ID
               AND    PIL.BUSINESS_GROUP_ID     = PEN.BUSINESS_GROUP_ID
               AND    PIL.PER_IN_LER_STAT_CD    NOT IN ('VOIDD','BCKDT'))
    AND PEN.PL_TYP_ID                           = PLN_TYP.PL_TYP_ID  
    AND TRUNC(SYSDATE)                          BETWEEN PLN_TYP.EFFECTIVE_START_DATE AND PLN_TYP.EFFECTIVE_END_DATE  
    AND PLN_TYP.PL_TYP_ID                       = PLN.PL_TYP_ID 
    AND TRUNC(SYSDATE)                          BETWEEN PLN.EFFECTIVE_START_DATE AND PLN.EFFECTIVE_END_DATE
    AND PLN.PL_ID                               = PEN.PL_ID
    AND PEN.OIPL_ID                             = BOIPF.OIPL_ID(+)
    AND TRUNC(SYSDATE)                          BETWEEN NVL(BOIPF.EFFECTIVE_START_DATE,HR_GENERAL.START_OF_TIME) AND NVL(BOIPF.EFFECTIVE_END_DATE,HR_GENERAL.END_OF_TIME)
    AND BOIPF.OPT_ID                            = BOF.OPT_ID(+)
    AND TRUNC(SYSDATE)                          BETWEEN NVL(BOF.EFFECTIVE_START_DATE,HR_GENERAL.START_OF_TIME) AND NVL(BOF.EFFECTIVE_END_DATE,HR_GENERAL.END_OF_TIME)
    AND (:P_SYSDATE)                            BETWEEN TRUNC(PEN.ENRT_CVG_STRT_DT) AND TRUNC(PEN.ENRT_CVG_THRU_DT)
    AND (CASE WHEN :P_PAYROLL_ID IS NULL THEN 'Y' ELSE NVL((SELECT 'Y' FROM DUAL WHERE PAY.PAYROLL_ID  = :P_PAYROLL_ID), 'N') END) = 'Y'
    AND PAPF.LAST_UPDATE_DATE                   = (:P_SYSDATE) ;
    --AND PAPF.LAST_UPDATE_DATE                   BETWEEN to_date(:P_SYSDATE) and (to_date(:p_sysdate) + INTERVAL '31' Day);
    --AND (:P_SYSDATE)                           = PAPF.LAST_UPDATE_DATE ;
    Thanks

    check this -
    Re: Best Event-Based notifications for Sox Complience?

  • Example of NI's Detailed Module/Board Repair Report

    Is an example available of NI's Detailed Module/Board Repair Report.  I am returning an SCXI-1581 module for repair under warranty due to a single channel being >25% out of spec.  A detailed repair report can be purchased from NI for $99.  I need to determine if the detailed repair report contains info from which I can determine why the SCXI-1581 module was out of spec after < 6 months usage.
    Solved!
    Go to Solution.

    Hi ATI -
         I apologize for the broken link.  Here are some pictures of the Detail Repair Report:
    Gary P.
    Applications Engineer
    National Instruments
    Visit ni.com/gettingstarted for step-by-step help in setting up your system.

  • Mix overview and detail records in same report

    Hello, in substance I need to mix results from overview table and records from details table in same report.
    For creating the scenario:
    CREATE TABLE ALPHA
    ALPHA_ID     NUMBER,
    ALPHA_NR     NUMBER,
    ALPHA_TOTCT     NUMBER,
    ALPHA_FUND     NUMBER
    ALTER TABLE ALPHA ADD (
         CONSTRAINT ALPHA_PK PRIMARY KEY (ALPHA_ID));
    ALTER TABLE ALPHA ADD (
         CONSTRAINT ALPHA_NR_UNI UNIQUE (ALPHA_NR));
    INSERT INTO ALPHA(ALPHA_ID, ALPHA_NR)
    VALUES( 1, 7 );
    INSERT INTO ALPHA(ALPHA_ID, ALPHA_NR)
    VALUES( 2, 11 );
    INSERT INTO ALPHA(ALPHA_ID, ALPHA_NR)
    VALUES( 3, 15 );
    INSERT INTO ALPHA(ALPHA_ID, ALPHA_NR)
    VALUES( 4, 17 );
    CREATE TABLE HIST
    HIST_ID     NUMBER,
    HIST_NR NUMBER,
    HIST_ALPHA_NR NUMBER,
    HIST_CT          NUMBER,
    HIST_VAL     NUMBER,
    HIST_DATE     DATE
    ALTER TABLE HIST ADD (
         CONSTRAINT HIST_PK PRIMARY KEY (HIST_ID));
    ALTER TABLE HIST ADD (
         CONSTRAINT HIST_NR_UNI UNIQUE (HIST_NR));
    ALTER TABLE HIST ADD (
         CONSTRAINT HIST_ALPHA_NR_FK FOREIGN KEY (HIST_ALPHA_NR) REFERENCES ALPHA ( ALPHA_NR ) );
    TRUNCATE TABLE HIST;
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 1 ,1    ,7 ,1 ,10 , TO_DATE('01.02.2009' , 'dd.mm.yyyy' ) );
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 2 ,6    ,7 ,1 ,10 , TO_DATE('01.05.2009' , 'dd.mm.yyyy' ) );
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 3 ,3    ,7 ,3 ,30 , TO_DATE('01.02.2010' , 'dd.mm.yyyy' ) );
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 4 ,4    ,11 ,1 ,10 , TO_DATE('01.03.2009' , 'dd.mm.yyyy' ) );
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 5 ,5    ,11 ,-2 ,-20 , TO_DATE('01.06.2010' , 'dd.mm.yyyy' ) );
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 6 ,8    ,11 ,1 ,10 , TO_DATE('01.02.2011' , 'dd.mm.yyyy' ) );
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 7 ,2    ,15 ,2 ,20 , TO_DATE('01.03.2009' , 'dd.mm.yyyy' ) );
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 8 ,7    ,15 ,5 ,50 , TO_DATE('01.06.2010' , 'dd.mm.yyyy' ) );
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 9 ,9    ,15 ,-4 ,-40 , TO_DATE('01.02.2011' , 'dd.mm.yyyy' ) );
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 10 ,10    ,17 ,1 ,10 , TO_DATE('01.03.2011' , 'dd.mm.yyyy' ) );For updating the overview table, I used a view
    CREATE OR REPLACE VIEW HIST_AGG ( HIST_ALPHA_NR,  TOT_CT  , TOT_VAL )
    AS
    SELECT HIST_ALPHA_NR
    ,SUM ( NVL(HIST_CT, 0 ) ) TOT_CT
    ,SUM( NVL(HIST_VAL, 0) )  TOT_VAL
    FROM HIST
    GROUP BY HIST_ALPHA_NR;
    DECLARE
    CURSOR cur
    IS
    SELECT
    HIST_ALPHA_NR
    ,TOT_CT
    ,TOT_VAL
    FROM HIST_AGG
    BEGIN
    FOR rec IN cur
    LOOP
         UPDATE ALPHA
         SET ALPHA_TOTCT = rec.TOT_CT
         , ALPHA_FUND  = rec.TOT_VAL
         WHERE ALPHA_NR = rec.HIST_ALPHA_NR;
    END LOOP;
    END;First report should the overview line from table alpha followed by all detail records from
    table HIST, and this for each alpha_nr. At the end of the report a total from the overview
    table alpha.
    "SUMMARY";"ALPHA_NR";"ALPHA_TOTCT";"ALPHA_FUND";
    ;7;5;50;
    ;7;1;10;01.02.2009
    ;7;1;10;01.05.2009
    ;7;3;30;
    ;11;0;0;
    ;11;1;10;01.03.2009
    ;11;-2;-20;01.06.2010
    ;11;1;10;01.02.2011
    ;15;3;30;
    ;15;2;20;01.03.2009
    ;15;5;50;01.06.2010
    ;15;-4;-40;01.02.2011
    ;17;1;10;
    ;17;1;10;01.03.2011
    "TOTAL_ALPHA_NR";4;9;90;Second report should display the overview per time period (year), but the records from
    e.g. year 2009 start counting in year 2010. At the end of each year again a summary for
    the actual status.
    "YEAR";"ALPHA_NR";"ALPHA_TOTCT";"ALPHA_FUND"
    2009;7;0;0
    ;11;0;0
    ;15;0;0
    ;17;0;0
    "Total 2009";4;0;0
    2010;7;2;20
    ;11;1;10
    ;15;2;20
    ;17;0;0
    "Total 2010";4;5;50
    2011;7;5;50
    ;11;-1;-10
    ;15;7;70
    ;17;0;0
    "Total 2011";4;11;110
    2012;7;5;50
    ;11;0;0
    ;15;3;30
    ;17;1;10
    "Total 2012";4;9;90

    Hi,
    This is quite a different problem from what you first posted.
    wucis wrote:
    This is what I want to get
    ALPHA_DATE     ALPHA_NAME             ALPHA_NR     ALPHA_TOTCT     ALPHA_FUND     TRANS_DATE
    01.01.2009      seven                      7             5             50     
                                      7          1          10          01.02.2009
                                      7          1          10          01.05.2009
                                      7          3          30          01.02.2010
    01.03.2009     eleven                  11          0          0     
                                      11          1          10          01.03.2009
                                      11          -2          -20          01.06.2010
                                      11          1          10          01.02.2011
    03.05.2010      twelve                  12              0               0
    02.02.2009     fifteen               15          3          30     
                             15          2          20          01.03.2009
                             15          5          50          01.06.2010
                             15          -4          -40          01.02.2011
    10.10.2010      seventeen          17          1          10     
                             17          1          10          01.03.2011
                TOTAL_ALPHA_NR          5          9          90     
    Do you really want to include alphr_nr=12? If so, what do you mean when you say
    I have an approach but there are "unnecessary" rows ( the line with just alpha_nr = 12 ) and why don't you want alpha_nr=13?
    so my join is buggyExactly! The join
    ...    from hist, alpha b
    WHERE b.alpha_nr  = hist.hist_alpha_nr (+) ...means "include all rows from alpha, whether of not they have any corresponding rows in hist or not". If you want to exclude alpha_nrs 12 and 13, you probably want to do an inner join there.
    You don't need any sub-queries to do that:
    SELECT       CASE
               WHEN  GROUPING (h.hist_alpha_nr) = 0
               AND   GROUPING (h.hist_date)     = 1
               THEN  MAX (a.alpha_date)
           END                    AS alpha_date
    ,       CASE
               WHEN  GROUPING (h.hist_alpha_nr) = 1
               THEN  'TOTAL_ALPHA_NR'
               WHEN  GROUPING (h.hist_date)     = 1
               THEN  MAX (a.alpha_name)
           END                    AS alpha_name
    ,       CASE
               WHEN  GROUPING (h.hist_alpha_nr) = 0
               THEN  h.hist_alpha_nr
               ELSE  COUNT (DISTINCT (alpha_nr))
           END                    AS alpha_nr
    ,       SUM (h.hist_ct)          AS alpha_totct
    ,       SUM (h.hist_val)           AS alpha_fund
    ,       h.hist_date               AS trans_date
    FROM       hist        h
    ,       alpha        a
    WHERE       h.hist_alpha_nr     = a.alpha_nr
    AND       a.active          = 'Y'
    GROUP BY  ROLLUP ( hist_alpha_nr
                       , hist_date
    ORDER BY  GROUPING (h.hist_alpha_nr)
    ,            h.hist_alpha_nr
    ,       GROUPING (h.hist_date)          DESC
    ,       h.hist_date
    ;Output:
                               ALPHA  ALPHA ALPHA
    ALPHA_DATE ALPHA_NAME        _NR _TOTCT _FUND TRANS_DATE
    01.01.2009 seven               7      5    50
                                   7      1    10 01.02.2009
                                   7      1    10 01.05.2009
                                   7      3    30 01.02.2010
    01.03.2009 eleven             11      0     0
                                  11      1    10 01.03.2009
                                  11     -2   -20 01.06.2010
                                  11      1    10 01.02.2011
    02.02.2009 fifteen            15      3    30
                                  15      2    20 01.03.2009
                                  15      5    50 01.06.2010
                                  15     -4   -40 01.02.2011
    10.10.2010 seventeen          17      1    10
                                  17      1    10 01.03.2011
               TOTAL_ALPHA_NR      4      9    90If this is not what you want (e.g., if you want alpha_nr=12 in the results) then point out where these results are wrong, post the correct results, and explain how you get the correct results in those places.

  • Classification of line items into the Detailed Profit and Loss report

    Hi,
    Given a line item in a profit and loss ledger, what field determines that the line item will appear under Fixed Manufacturing Costs, Sales and Distribution or General Admin Expenses when we generate the Detailed Profit and Loss report?
    Thank you

    Hi all,
    Thank you so much for everyone's quick reply. I really appreciate it.
    Please allow me to clarify my question.
    I have a balance of 3,712,126.60 in my GL 30000000. In my detailed Profit and Loss (ZPL-002), 705,712.90 is shown under Gen. Operating Exp. while 3,006,413.70 is shown under Fixed Manufacturing Costs.
    So, what field does SAP use to allocate those line items between Gen. Operating Exp. and Fixed Manufacturing Costs? Is it Functional Area only?
    Thank you.

  • Error Report Service SCCM 2012 R2

    Hy Guys,
    I am having problem to generate reports in SCCM using the Report Service.
    Every report that will generate displays the error below.
    I am using SQL Server 2012 Sp1 to report Service.
    The User I'm using this with permission of SA in the instance.
    In the report Db Service he is as datareader.
    Erro no processamento de relatório. ---> Microsoft.ReportingServices.ReportProcessing.ProcessingAbortedException:
    Erro no processamento de relatório. ---> Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: Falha na execução da consulta para o conjunto de dados 'DataSetAdminID'. ---> System.Exception: Para obter mais informações sobre este erro,
    navegue até o servidor de relatório, na máquina de servidor local, ou habilite erros remotos
    Microsoft.ConfigurationManagement.ManagementProvider.SmsException
    Erro no processamento de relatório.
    Stack Trace:
       em Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ParameterPresenter.GetParameters()
       em Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ParameterPresenter.LoadParameters(IReport
    report, Collection`1 navigationParameters, IResultObject resultObject)
       em Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ReportViewerPresenter.Worker_DoWork(Object
    sender, DoWorkEventArgs e)
       em System.ComponentModel.BackgroundWorker.OnDoWork(DoWorkEventArgs e)
       em System.ComponentModel.BackgroundWorker.WorkerThreadStart(Object argument)
    System.Web.Services.Protocols.SoapException
    Erro no processamento de relatório. ---> Microsoft.ReportingServices.ReportProcessing.ProcessingAbortedException:
    Erro no processamento de relatório. ---> Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: Falha na execução da consulta para o conjunto de dados 'DataSetAdminID'. ---> System.Exception: Para obter mais informações sobre este erro,
    navegue até o servidor de relatório, na máquina de servidor local, ou habilite erros remotos
    Stack Trace:
       em Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ParameterPresenter.GetParameters()
       em Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ParameterPresenter.LoadParameters(IReport
    report, Collection`1 navigationParameters, IResultObject resultObject)
       em Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ReportViewerPresenter.Worker_DoWork(Object
    sender, DoWorkEventArgs e)
       em System.ComponentModel.BackgroundWorker.OnDoWork(DoWorkEventArgs e)
       em System.ComponentModel.BackgroundWorker.WorkerThreadStart(Object argument)
    Lucas Rezende Esse conteúdo e fornecido sem garantias de qualquer tipo, seja expressa ou implícita. Por favor, lembre-se de Marcar como Resposta as respostas que resolveram o seu problema. Essa e uma maneira comum de reconhecer aqueles que o ajudaram e fazer
    com que seja mais fácil para os outros visitantes encontrarem a resolução mais tarde.

    Hi,
    Can you run the report successfully from
    /Reportserver">http://<servername>/Reportserver ?
    If the reports cannot run successfully, please try to fix the SSRS problem.
    You could also try the steps in Garth's reply.
    Remove the reporting point from CM12
    Remove SSRS from SQL
    Reboot the SQL server
    Reinstall SSRS
    Ensure the right Service package and CUs are installed on SQL.
    Configuration SSRS
    Ensure that SSRS works before moving forward. <aka browse to
    /reports">http://<server>/reports make sure that you can see the CM12 Folder and reports
    https://social.technet.microsoft.com/Forums/en-US/2b36b2a3-4871-4441-adc8-ece2e69c2c72/reporting-in-sccm-2012?forum=configmanagergeneral
    Best Regards,
    Joyce
    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 Subscriber Support, contact [email protected]

  • Replacing detail field in GL report

    Hi All,
    I am still learning SAP B1 and currently I am facing a problem relates to general
    ledger report. is it possible to replace detail field in the report with customer
    name ? I really need it since it wastes time for user to browse BP. TIA
    Rgds,
    Mark

    Hello,
    I am not sure that you could replace it because it is standard SAP B1. I suggest to develop another report but contains same fields / data but the detail column/field consist customer name. There are reporting services, crystal report or maybe XL reporter.
    Rgds,

  • Report All SCCM clients and Collections

    Hi all
    I'm trying to create report
    All SCCM clients and Collections
    But I can't convert multiple rows (collections) in one row
    I got:
    Name        Collection Name
    ps1             serverDP
    ps1               Adobe
    ps2                CRT
    ps2               Note
    I need:
    Name        Collection Name
    ps1             serverDP ,Adobe
    ps2                 CRT,Note
    Im using following query ....but it doesn't work .Need help!!!  
    select
    v_FullCollectionMembership
    .Name
    as Name,
    CollName
    =
    stuff((SELECT
    + v_Collection.Name
    from
    v_Collection
    where
    v_Collection.CollectionID
    = v_FullCollectionMembership.CollectionID
    FOR
    XML
    PATH('')
    ), 1,
    1,'')
    FROM v_FullCollectionMembership
    Gerkin

    Hi,
    I recommend you use Report Builder to create the report.
    Using Matrix and LookupSet to merge the table.
    =join(LookupSet(Fields!Name.Value, Fields!Name.Value, Fields!CollName.Value, "DataSet_name"), ",")
    For more information, please review the link below:
    Adding a Matrix (Reporting Services)
    http://technet.microsoft.com/en-us/library/ms157334(v=SQL.100).aspx
    LookupSet Function (Report Builder and SSRS)
    http://msdn.microsoft.com/en-IN/library/ee240819.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.

  • Missing reports in SCCM 2012

    Hi
    I have problem with Reports in SCCM Console, it missing ..
    I have done following;
    I have add myself in permission in the website
    http://SQLSERVERNAME/Reports as roles
    Browser
    ConfigMgr Report Administrators
    ConfigMgr Report Users
    Content Manager
    My Reports
    Publisher
    Report Builder
    I have also add the Role, Reporting Service Point.
    The Reporting Services Configuration Manager is joined to my database ReportServer. The database is native and log-in as Windows Account, my admin account.
    There is more I can checked ?
    -- Sokoban3 --

    Hi
    I have created AD Acount, ReportsUser with Administrative rights and add all permission in http://reportserver/Reports. 
    I got same error, Could
    not retrieve the reporting service name for instance "MSSQLSERVER"
    Maybe is the problem to get contact to SQL Server?
    I don't understand what /ReportServer
    is... ??
    //Sokoban3

  • Download Reports from SCCM 2012 Using PowerShell

    Hi,
    I Wants to Download reports from SCCM 2012 using powershell but couldn't find a way.
    I used Invoke-Cmreport but it says no reporting Service point on site code XYZ and server ABC
    But Reporting Service is enabled and works fine as i can check/download report manually
    Thanks 

    Hi,
    You could have a look at the script in the blog below.
    How to Download All Your SSRS Report Definitions(RDL files) Using PowerShell.
    http://www.sqlmusings.com/2011/03/28/how-to-download-all-your-ssrs-report-definitions-rdl-files-using-powershell/
    Note: Microsoft provides third-party contact information
    to help you find technical support. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.
    Best Regards,
    Joyce

  • 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

  • Is there any report in SCCM 2012 to list out all the physcial machine and all the virtual machine?

    Is there any report in SCCM 2012 to list out all the physcial machine and all the
    virtual machine?
    and list all VMs for each physical server.

    Hi,
    there is no such builtin report but you can easily crete one as all information is in the database.
    http://www.scconfigmgr.com/2014/01/24/create-custom-reports-for-configmgr-2012-with-report-builder/
    Regards,
    Jörgen
    -- My System Center blog ccmexec.com -- Twitter
    @ccmexec

  • How to fix the height of the details section in crystal reports.

    hi all
    How to fix the height of the details section in crystal reports.

    Thanks for your reply
    i didnt get the clear idea about your answer can you explain it once with example
    why iam asking is when i add a new details section according to you answer maintaining same height of the two details sections and i see the preview the iam getting gap between each record. this is so because one record from details section1 and another empty space from details section2
    like
    Details section A-contains records
    Details section B- no records
    Details section A-contains records
    Details section B-no records
    Then how will i solve my issue
    Thanks in advance

Maybe you are looking for

  • Problem in mail api to print the received date of an email

    Do anyone know how to get received date of an email?I am using POP3 server.So while printing the date using getReceivedDate(), getting null pointer exception....So how to get the date?...Anyone know this using headers or something?I want a sample pro

  • A help with a hierarchical query

    I've got two tables: FOLDERS where relevant fields are: folderId, parentFolderId, folderQuota and DOCUMENTS where the relevant fields are: folderId, size FOLDERS is hierarchical - parentFolderId of a child's folder is set to folderId of the parent fo

  • MacBook Pro Retina problem

    I have a brand new MacBook Pro 13 inch with retina display, i downloaded the game Worms from the App Store and started playing while i was playing the game my trackpad didn´t work normaly, I have the pulse option to make click enabled in my mac so i

  • Style not list to use in Find dialog box...why?

    In find, advanced, you can search for styles. However, the style I want to search for is not listed. Other styles I have created are listed. What is the problem? I have rebooted the computer, does not solve the problem. thanks bob

  • Date of Manufacturing of Batch

    Dear All SAP Gurus, I need batch manufacturing date of Batch as posting date of that material document at the time of GR. Now the issue is, we want to pick date of manufacturing of Batch direct from posting date. So how to do it ?? Please reply ASAP.