Status Report for MDM

Hi Folks
I am new to MDM.  The requirement is that the through MDM GL accounts are created in 45 clients across the landscape.
In each client, the error message are dispatched in the Business Workplace Inbox of the user. however The user have to go into each and every client to check for the error messages ( if any).
We require a report which searches across each and every client and collects the error messages of GL Account data load and present it to the user in a summarized way.
In this way, user will be able to get the summary of error messages  in each and every client without logging into each and every client and manually looking for the error messages.
If you know any standard report, please let me know or if u know one which does this job in one client atleast so that I can make a custom copy of that report.
Regards
Waz

The requirement is withdrawn. Will need to develop a custom report using RFC destinations.

Similar Messages

  • Status Report for Software Update Deployement

    Hi,
    I am looking for SCCM2012 query for patch status from specific deployment and specific collection. I need the following details in my patch
    report with against each machine name
    "Total Number of updates required"
    "Total Number of updates installed successfully"
    "Total Number of Updates Failed"
    "Total Number of Updates installing"
    "Total Number of updates downloading"
    etc.
    Thanks

    That's a fairly challenging report request.  You'll have to pull together information from many different tables, and from what I can tell, you're also looking for some real-time information with the installing/downloading portions as well.
    This report has some of what you're requesting:
    http://anotherblabla.wordpress.com/2012/03/06/sccm-usefull-software-update-reports/
    Some good stuff here too:
    http://pleasepressanykey.blogspot.com/2010/08/sccm-patchmgmt-custom-reports.html
    You should also consider taking a look at some of the out-of-the box reports in 2012 for Software updates.  I don't believe any have
    exactly what you're looking but I think most if not all of the components are there and you could extract those and combine them into a new report. 
    If you're new to reporting, this is a decent guide that I followed and it's decent and will help you get some of the basics.
    http://sccmgeekdiary.wordpress.com/2012/10/29/sccm-2012-reporting-for-dummies-creating-your-own-ssrs-reports/
    Hope this helps.

  • Project Status Reports for cProjects 4.0

    Hi Experts,
    Does anyone have a document in which functionalities of <b>Project Status Reports</b> are detailed?
    I would want to know <b>which kind of data can be extracted</b> from projects and if <b>operations</b> like sum, substraction, aggregation, grouping can be made in these reports...
    In addition, if you had some documents about how a Project Status Report looks like it would be also good to have.
    Please send the documents to: [email protected]
    Of course, <b>reward points</b> will be given for all useful answer...
    Thank you all in advance.
    Kind Regards,
    Isabel

    Hi Yasar,
    Thank you very much for your document, although that is not really what I was looking for.
    I need to design a Project Status Report, so I want to know how does it work, which data does it use (which is the data that can be reported and which data can't), if you can select the data to appear or group it by some attributes, if the manual comments can be inserted attached to each of the data reported (comments related to all phases reported).
    So I still need some further details on this (version 4.0 with AIF documents).
    Thank you very much!
    Kind regards,
    Isabel

  • Bug in Plugin Check's status report for Adobe Flash

    Plugin Status (https://www.mozilla.org/en-US/plugincheck/) says "Shockwave Flash 15.0 r0" "Up to Date 15.0.0.152". This is incorrect. The latest version of Flash (as of 11/11/2014) is 15.0.0.223, as reported by Adobe's Test Page. Therefore, the status should say "Vulnerable".
    I am using Firefox ESR 31.2.0 without any addons on a Windows 7 64-bit PC.
    Thank you and keep up the good work!
    Ed

    Mine says "Up to Date 15.0.0.189" which as you point out also is incorrect.
    A bug has been filed for this, but I can't tell whether the problem has been fully diagnosed and anyone is going to pick up the ball and run with it:
    [https://bugzilla.mozilla.org/show_bug.cgi?id=1084537 1084537 – Flash sometimes displayed as up to date whilst vulnerable, on Windows 7]
    ''While it's generally not helpful to add comments to bugs (unless you can help fix them), you can register on the Bugzilla site and "vote" for them to be fixed.'' See: [https://bugzilla.mozilla.org/page.cgi?id=voting.html Voting], [https://bugzilla.mozilla.org/page.cgi?id=etiquette.html Bugzilla Etiquette].
    Edit: For some reason, this bug doesn't allow voting.

  • Challenging question: Status report for long running program...

    Hi All,
    With all the control stuff around like cl_dd_document I was wondering if there is a way to give a user a report which shows the progress of a very long running program?
    i.e. If I have a 20 step process and each step takes 1 minute, the following is what I would like to occur:
    Output a status line in a report format, run step, repeat until all steps are finished.
    This is similar to the status bar, but with a history of what is happening.  Obviously scrolling needs to be considered also.  Ideally it would behave like sapinst would but in a reporting format.
    Obviously this has to bypass the PBO/PAI approach, hence why I believe UI Controls must be the answer.
    Any ideas anyone?
    Regards,
    Matt

    Without using a control, you could try the old report refresh trick using set user-command and an action triggered after an RFC in a new task ... see basic demo below:
    report zlocal_auto_refresh no standard page heading.
    data:
      begin of gs_step,
        uzeit               like sy-uzeit,
        step                like sy-tabix,
        start_end(10)       type c,
      end of gs_step,
      gt_step               like gs_step occurs 10,
      g_step_number         like sy-tabix.
    *=======================================================================
    * Events
    *=======================================================================
    at user-command.
      perform user_command.
    *=======================================================================
    * Mainline
    *=======================================================================
    start-of-selection.
      perform start_of_report.
    end-of-selection.
    *&      Form  start_of_report
    form start_of_report.
      set pf-status '1000LIST'. "contains ZREFRESH ucomm
      perform run_a_step.
    endform.                    "start_of_report
    *&      Form  run_a_step
    form run_a_step.
    * Demo with something that takes some time, like sleeping...
      data:
        ls_step             like gs_step.
      add 1 to g_step_number.
      if g_step_number > 9.
        stop.
      endif.
      get time.
      clear: ls_step.
      ls_step-step      = g_step_number.
      ls_step-uzeit     = sy-uzeit.
      ls_step-start_end = 'Starting'.
      append ls_step to gt_step.
    * generate a delay for demo
      call function 'ENQUE_SLEEP'
        exporting
          seconds = 1
        exceptions
          others  = 0.
      get time.
      clear: ls_step.
      ls_step-step      = g_step_number.
      ls_step-uzeit     = sy-uzeit.
      ls_step-start_end = 'Ended'.
      append ls_step to gt_step.
      format reset.
      format color col_normal.
      loop at gt_step into ls_step.
        write: /
          ls_step-uzeit,
          ls_step-start_end,
          ls_step-step,
          at sy-linsz space.
      endloop.
      uline.
      call function 'RFC_PING'
        starting new task 'NEWTASK'
        performing when_back on end of task.
    endform.                    "run_a_step
    *&      Form  when_back
    form when_back
      using
        i_taskname          type any.
      receive results from function 'RFC_PING'.
      set user-command 'ZREFRESH'. "act like user pressed something
    endform.                    "when_back
    *&      Form  user_command
    form user_command.
      case sy-ucomm.
        when 'ZREFRESH'.
          perform run_a_step.
          sy-lsind = sy-lsind - 1.
      endcase.
    endform.                    "user_command
    cheers
    jc

  • Inventory Status Report issue

    Hello,
    Upon running the Inventory Status report for  item group    item no. 'A' shows 5,000 Ordered.   When I drilled  down on the 5,000, SAP B1 only shows 4,500 on open POs.   Please help  
    Using SAP B1 9.0 PL11
    Thanks,
    Jagriti

    Hi,
    Please refer SAP note:
    991077 - How to check 'Committed' and 'Ordered' values
    Thanks & Regards,
    Nagarajan

  • Status report of idoc.

    Hi,
    I need to generate a status report for an idoc which I have processed using the FM IDOC_INBOUND_AYNCHRONOUS.The FM only takes the control and data sections of the idoc.Could anyone help me to know how to generate a status report for this idoc?

    Hi Sandeep,
    Please refer the link,
    Report to display all the status records of an Idoc
    Best Regards.
    Reward points if it is useful.

  • Line itemwise report for operational WCD

    Hi,
    We are using the Mechanical and process isolations in the operational WCD. one WCD for Mechanical isolation and another one for process isoaltion.
    There are multiple Isolation points used for process isolation. Example: 20 process isolation points in a WCD for a particular equipment.
    The standard list editing operational WCD transaction (WCL4) provides a report which is a single line on the WCD level.
    Where as we are interested to track on the individual line item i.e. individual isolation points status with in a WCD to track how many isolations are tagged, how many are still to be tagged, how many are untagged, how many are closed etc..
    Proposed layout:
    WCD number         Line item #        Status
    30000010              10                    Tag printed
    30000010              20                    Tag printed
    30000010              30                    Tagged
    30000010              40                    Tagged
    30000010              50                    Untagged
    30000010              60                    Untagged 
    Is there any way to enhance the standard report (WCL4) or we need to develop a custom report.
    Thanks in advance.
    Regards,
    Raj

    Hi Harshvrdhan,
    Thanks for your immediate reply.
    I am using the functionality what you have proposed. With WCL4 transaction I can bring all the line items for WCD but the status field is not available hence it is available only on the header level.
    The user has requested that they need line itemwise status report for all the shutdown related WCDs to be downloaded into excel fiel for status monitoring and management reporting purpose.
    However, I was reading one of the document written by Michael lesk i.e. 8103_Function_Enhancements_EN.
    As he mentioned, with SAP EhP5 there are more functionalities available with BADIs for WCM list processing.
    Hopefully by implementing the BADIs mentioned in the document we should be able to get the additional custom fields.
    Special thanks to Uwe Kirchner and Michael lesk for their continuous effort in enhancing the WCM processes and the dedicated user support.
    Regards,
    Raj

  • PR status Report aganist dispatched /pending material aganist Project

    Hi All,
    Is there any Standred Report on PR status Report for dispatch / pending material aganist a project
    if not what is the other option of getting it
    Regards,
    Rajashekhar B.S

    Hi,
    It is not necessary that all the material assigned in Project will be delivered, some may be consumed during preparation of finished good/final product. CN52N will tell you about goods issue also but again all goods issue cant be delivery.
    Hence possibility of standard report adressing your requirement is ruled out.
    Regards

  • CProjects Project status report not generated

    Hi
    I am facing problem of getting Project status report for a project in cProjects 4.0
    I am at client side and accessing the IDES ECC6.Her I am trying for getting Project status report for the project created.
    The error I am getting is :
    "WebDynpro Exception: ADS: Request start time: Thu Aug 21 16:53:27 GMT+03:00 2008(200,101). "
    In customizing for cProjects I have used the std. form available for the same, activated the same for the project type and when tried to get the report I got the above mentioned error.
    Then in se38 I executed the programme FP_TEST_IA_01 the result was :
    ADS: Request start time: Thu Aug 21 17:23:42 GMT+03:00 2008(200,101)
    Also I have activated the following services
    SICF->Services->default_host->sap->bc->fp and fpads, both are active.
    But still I am not getting project status report from cProjects.
    Please guide me what else should I do to get the project status report?
    Thanks and Regards,
    Niraj Sikligar

    Hi Reema,
    Its great to hear from you.
    I have run the report : FP_PDF_TEST_00
    Out put is :
    Version Information:                705.20060620101936.310918
    What does that mean ?
    Secondly,
    I have checked RFC destination for ADS the results were as shown below:
    On Technical Settings tab page :
    target host: ides
    Path prefix: /AdobeDocumentServices/Config?style=rpc
    Is this OK?
    Is there anything else to be done?
    Regards,
    Niraj Sikligar

  • EWA & IT Reporting on MDM System

    Hi,
    We are configuring our MDM System in System Monitoring.
    Is that possible to configure EWA & IT Reporting for MDM Systems in Solution Manager System Monitoring.?
    Pls Advise
    Thanks
    Arun

    Hello
    Please to be clear, EWA for MDM is possible however only the Standard JAVA checks can be made.
    There are no MDM checks for EWA. There maybe MDM checks in the future.
    So 1) Yes EWA can be generated on an MDM system with SDM installed
         2) The EWA will be a standard Java system EWA and will have no MDM specific checks.
    Hope this makes everyhting clear.
    Regards,
    Paul

  • Report for PO status

    Hello Experts ,
    Can you tell me the standard report for the status of PO as in GR qty , value , in voiced qty & value etc & open qty & value ??
    Regards

    hi,
    There is no direct report, but for a single material you can check the PO history from ME2N etc reports...
    After executing the report there is the PO history tab...in it can see it individually...
    But from the table you can see collectively...
    Hope it helps..
    Regards
    Priyanka.P

  • XL Report for stock status

    I am trying to create a stock status report that shows all items grouped by item group, their quantity on hand, item cost, and total value.  We need to have a subtotal by item group.  I thought that XL Reporter would do this easily, but I am having difficulty.
    In the Report Composer, I can create the listing of items with descriptions, quantities, and item costs, grouped by item group.  Of course, I cannot perform the calculation to get the value of each item (quantity * cost).  When I generate the report into the Report Designer, there are no errors and the design appears to be created OK.  But when I run the report, the spreadsheet comes up completely blank except for column headers.
    Can anyone tell me what the problem is?

    XL reporter is based on the concepts of Dimensions, Light Dimensions and Measures.
    >> partial extract from XL Reporter FAQ.
    28. When I create a query within the Report Composer that uses the dimension called GL Accounts and add the attribute Account Name then refresh the query it produces data as expected. However when the query is executed in Excel it does not produce any data. What am I doing wrong?
    The query only contains dimensions and not measures. It is not possible to generate data with a query that does not contain a measure field type within Excel. Excel and the composer pick up data in different ways, therefore it is possible you will see data in the composer, however in excel you will not. Until a measure is added no data is produced.
    Do check the URL for complete XL reporter FAQ: Check FAQ No.28
    https://websmp107.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_HIER_KEY=701100035871000371280&_OBJECT=011000358700001325372005E&_SCENARIO=01100035870000000183&
    For further information, check the following URL:
    https://websmp107.sap-ag.de/~sapidb/011000358700003984512006E.pdf
    You can check the following URL to understand : Creating a Profit & Loss Report Using XL Reporter
    https://websmp107.sap-ag.de/~sapidb/011000358700001160462006E.pdf
    Hope this information helps in providing solution to your actual requirement.
    Regards
    Satish

  • What is table field name for order status report  of rate per unit and  bal

    hi  i want to make FS for order status report i almost get all table and field but i don't get only two field  rate per unit and balance value  table field didn't get please help me searching in field and table
      i want to develop my status report

    Hi,
    Check tables VBAK and VBAP wherein you will get all header and item details.
    VBUK and VBUP for header and line item statuses.
    KONV would give you rates/pricing details for each condition type determines in the sales order.
    VBAK-KNUMV = KONV-KNUMV is how you relate both of them.
    Hope that helps.
    Regards,
    Amit

  • Really urgent: help in making report for status of vendor payement

    Hi,
    I am making a report in which i have to display the status of vendor whether it is paid or not?
    Till now i am able to have knowledge that when we do MIGO there are the Financial Documents form there i get the account no.. whichit is stored in the BKPF table. From there we have the account no... and after that there are 4 tables into which i have to look after the tables i.e. BSAS,BSIK,BSIS, n BSAK.
    Plzz tell me how should i make a report as the Acount no.. have to move among these tables to get the status of it pament.
    plzz provide me some guidelines for making a report for it as help will be deifnately rewarded.
    Edited by: abaper2008 on May 21, 2008 6:52 AM

    Hi,
    Hi,
    I making a report in which i have to display the vendor payment is done or not?
    Curently i am using the 4 tables of Financial :-
    BSAK,BSIS,BSIK AND BSAS which gives the status of vendor whether it is paid or not . 1 thing i observed that data compared wit htew MKPF table among these tables(BSAS,BSIK N BSAK) is not coming right as i am taking common field XBLNR among them all .
    One more thing i observed that BLART is getting changed in each table.
    for instance,
    if the BLART is WE for material document and i am taking XBLNR filed from this table MKPF and den looking XBLNR in BKPF where the entry consist of BLART - RE n WE and finally when i look up in the BSAK table the field consist of RE .
    How can i see that it is being paid or not the BLART is keep on changing.
    Plzz proivde me guidelines as how to rectify the problem?
    Edited by: abaper2008 on May 21, 2008 9:03 AM

Maybe you are looking for

  • Error when executing VI with "Invoke Node" in loop

    Hello, please check if this is possible what i am doing here or if there is a better way to do it. The goal is to have a VI that i can start in TestStand which is then running in a loop until i set a global variable. I do this currently with: 1.) Sta

  • Audio clip warning & now no sound

    I had audio until I removed a transition. The audio clips show a warning symbol at the front of each clip and now no sound.

  • GIS/ESRI Integration

    Hi I'm very new to SAP (1month) and still trying to find my feet. We would like to integrate SAP RE and GIS. I've managed to find some documentation that mentions things like standard interfaces,Business Connector, BAPI, ESRI_R3.dll etc but nothing s

  • HT1657 Error code (-50) ????

    It will not allow me to download a fuilm i have just rented. the error code is (-50). Hopefully i will not be charge for this...

  • Having problems with Mail

    This message was created automatically by mail delivery software. A message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:    SMTP error from remote mail server afte