Reporting In Service Manager 2012 - How To Get A List Of All Service Requests Regardless of Status

Within the Custom Reporting Options available to users of Ssystem Center Service Manager 2012, which would one use to create reports that do not contain any agregated data but are instead detail level info such as a list of all Service Requests reardless
of status?  I want to include within the report the same data you see on the main page of a Service Request when you double-click a Service Request within Service Manager and it pops opne the details of the Service Request.
I'm trying to get the following info for each Service Requests
SR ID (i.e. SR1234)
Affected User
Title
Description
Priority
Source
Area
Support Group
Assigned To
Created By and Created On
I know the cubes w/Excel offer a great way to get data for a **piece meal report or for getting agregated data (I.E. counts, sums, avergares, Max's & Mins) but I need a report that has zero totals and no agregations. 
Thanks
** A piece meal report is a report that has to be manually pieced together by combining data from others reports and other sources because no single report can be constructed to bring all the data togethere into a single report.  If you've ever
worked with an accountant taht uses Excel for everything but who has no idea how SQL or databases in general are deisgned then chances are you've either been asked to create a piece meal report for them and or seen them do one them selves when they open a
spreadshet and dump into it disperate data from a variety of sources and then ask you why you can't automate that same report for them.

the following thread covers some good SQL queries to get details about the Incident Request, just amend them to cover the Service Request
http://social.technet.microsoft.com/Forums/systemcenter/en-US/e703641d-3e05-4df4-be2b-bf9bd62534f8/how-to-generate-incident-report-with-incident-description-field-in-scsm-2012-sp1

Similar Messages

  • How to get the list of all process order which are settled?

    Hello Friends,
    Is there any  standard report available to get the list of all settled  Process Order or  Production order?
    Thanking all of you in advance.
    Regards,
    Jitendra

    Hi,
    You can the below standardreports for knowing the list of Settled Process Orders :
    1. Use Tcode : COOIS and in the selection fields provide the Process Order Type, Plant and System Status As " SETT" and execute the same . System will list all the Process Orders which were settled so far.
    2. Use Tcode : CO26 with selection fields as above.
    Hope this will suffice your reqt.
    Regards
    radhak mk

  • How to get the list of all formtypes in SBO?

    Hello,
    How can i get the list of all available formtype in SBO?
    Each SAP Business One form has a unique type to support multiple instances of the same form. For example, the type of the Purchase Order form is 142, Form=139 for Sales Order.
    Is this information stored anywhere?
    Thanks and Regards,
    Sheetal

    Hi Juha / Sheetal,
    Activating the menus will only help to get the forms which are "directly" accessible...
    ...but there are forms that come up only when clicking some button - or double-clicking - or activating a menu item in the (dynamic!) "Goto" menu etc.
    In 2005 SP01 a new function was introduced (and documented in the SDK Helpcenter) that can be used to iterate over all integer IDs (note there are a lot of gaps) up to 65535 and get information about the form and items on it (specifically the databinding!).
    Please take a look at the ResourceData property of the Application object in UI API!
    Gaps (in A version today - to my best knowledge): 10.000 - 20.000; 21.000 - 40.000; 41.000 - 50.000; 51.000 - 60.000...
    Regards,
    Frank
    <i>Visit the WiKi-FAQ at: https://wiki.sdn.sap.com/wiki/display/HOME/BusinessOneFAQ</i>
    BTW: What do you need that information on "all forms" for?
    Message was edited by:
            Frank Moebius

  • How to get the list of all users

    Hi,
    Is there a way in Grid Control for getting the list of all users on all target databases? I need to count how many Oracle db users in our company.
    Thanks a lot.

    One way to do it might be...
    Assuming you have preferred credentials set up for all of your databases, you could run a 'select username from dba_users or all_users;' against all of your databases through grid control.
    Click on Targets tab, click Databases, then the 'Execute SQL' link at the bottom of the page. Click 'Add' and 'Select All'. Then run it. It's just running the same sql across all of your databases and the output will be at the bottom for all of them.

  • How to get the list of all the security Roles defined ?

    I am trying to programatically get a list of all the roles defined
    in the weblogic. How can I access this information using the exiting
    MBean interfaces.
    thanks
    Prasad

    Wrong forum. Just a hint.

  • How to get the list of all running process in java

    hi all,
    i want to get the list of all running processes on my system. please let me know if it is possible to do with JAVA. which class i should use?
    waiting for reply
    bye

    Wrong forum. Just a hint.

  • Newbie ques : How to get the list of all tables in the database

    Hi,
    I'm very new to Oracle (using Oracle8i currently). I wanted to know if there is a way to get the list of all tables in the database. Like in mySQL you can use the command " show tables" to get the list of all the tables.
    Any help will e greatly appreciated. Please "cc" any reply to [email protected] also.
    thanks
    Deven

    Hi
    Select table_name, owner from all_tables;
    will give u all the tables in the database.
    all_tables, dba_tables, user_tables
    all_objects, dba_objects, dba_objects
    there are many, more tables. login as system and query the tab and try to describe the tables.
    Thanks
    Malar

  • How to Get a List of All XMLElements (Follow up to previous posting)

    (CS5, Win7, 64Bit)
    I need a collection (or array, etc.) of all the XMLElement objects in a given document in flat form (just like the "Structure Tree"'s hierarchichal view - only flatened).
    I could not find any "normal" way (i.e., built-in property or method) to get at the information. Instead, I found that I had to recurse through the entire XMLElement tree, starting with the Root Element. For a large document, this can take close to a ten minutes, and sometimes I have to do this for an InDesgin Book containing over ten enormous INDD files.
    After "கற்பனை Imagine" responded to my previous post about how to get all the XMLTags, I assumed that myDocument.xmlElements would return a collection of all the XMLElements in the Document. Unfortunately, it does not - it returns only the Root XMLElement. Thus, I have to recurse therough the hierarchy of XMLElements under the Root XMLElement - which takes a very long time.
    There HAS to be a better way, right?
    Would it be better were I to recurse through all PageItems in the document and then recurse through each PageItem's XMLElement tree? I assume that wouldn't make a big difference either way.
    I'm open to suggestions...
    TIA,
    mlavie

    mlavie:
    I could not find any "normal" way (i.e., built-in property or method) to get at the information. Instead, I found that I had to recurse through the entire XMLElement tree, starting with the Root Element. For a large document, this can take close to a ten minutes, and sometimes I have to do this for an InDesgin Book containing over ten enormous INDD files.
    What do you intend to do with this flat layout of XMLElements? That probably matters a great deal.
    If performance is really at play, you can try using XML Rules instead of interacting with the DOM from JavaScript. But they are complicated and confusing and more suited to declarative programming.
    Imagine suggests:
    var a = myroot.evaluateXPathExpression ("//*");
        xmlObjArray.push(a[b--]);
    Why not stop there? evaluateXPathExpression already returns an array, why iterate over it and push its elements into a new array? What's wrong with the return value?

  • How to get a list of all the clients logged in to the network

    hiii
    how can i fetch a list of all the users who are currently logged on the network...so that the list can then be sent to a database..plz tel me what techniqe can followed to do this....thanx

    hiii
    how can i fetch a list of all the users who are
    currently logged on the network...Easy, nobody logs onto the network so this is always nobody.
    You may be asking, how do I determine all the users who have logged in to all the PCs on the network.
    Write a program which is added to each user's Startup a program which updates the database with their details. If you have network scripts, this can be added to the user' network login batch script.

  • Service Manager 2012 R2 report libraries don't deploy

    So I've got a fresh install of Service Manager 2012 R2 with SQL Server '08 R2 in the 4 server layout, everything on Hyper-V. My issue is this: after registering the data warehouse, everything appears to function normally, the MPSyncJob completes its first
    pass and other jobs show up in the list but the reports section of the management console is never populated. All of the management packs deploy just fine except for the report libraries and there is no indication/logs of issues on any of the servers. I've
    gone through the manual setup setups for SSRS several times with no change in results. This is the 4th full reinstall of Service Manager with the same result.
    Any thoughts? Is there any way to tell whether or not SSRS is actually functioning as intended? Are there any special database permissions that need to be configured for the DW reports service account (I have read all set)?

    here is the SCSM setup wizard log (part of it)
    this is what I have found "Could not find WCS portal web site name in setup registry!"
    the web portal was installed and sharepoint was never installed then moved to a different server..
    how do I remove the self-service portal and web parts of service manager with out removing the management server. (having to back up MPs and DBs and restoring them)
    05:59:45:All vital setup files found.
    05:59:45:Upgrading Service Manager 7.5.2905 with 7.5.3079
    05:59:45:Checking dependencies for Server upgrade...
    05:59:47:Getting Management Group information from PMR-SC-SM:ServiceManager
    05:59:47:[GetManagementGroupPropertiesFromDB]:  Opened the DB connection using Data Source=PMR-SC-SM;Initial Catalog=ServiceManager;Integrated Security=True;Persist Security Info=False.
    05:59:47:[GetManagementGroupPropertiesFromDB]:  Found Management Group information.
    05:59:47:[GetManagementGroupPropertiesFromDB]:  Found Primary SDK server:PMR-SC-SM.adi.local.
    05:59:47:Validating SmAdminRoleGroup
    05:59:47:Checking dependencies for WCS Portal upgrade...
    05:59:47:Could not find WCS portal web site name in setup registry!
    05:59:48:***ERROR*** Microsoft System Center 2012 R2 Service Manager: Microsoft System Center 2012 R2 Service Manager is not in a valid state.

  • Getting error when trying to create Exchange Connector in System Center Service Manager 2012

    Getting error when trying to create Exchange Connector in System Center Service Manager 2012
    The connection to the server was unsuccessful. Please check the server name and/or credentials entered.
    Additional Information: The server URL is not accessible or the user does not have permission to access it (message: The request failed. The remote server returned an error: (401) Unauthorized.
    Warm Regards, Pramod Kumar Singh Manager-IT

    Someone sorted out this issue by installing API 1.2 and copying the dll files to the service manager server ,service folder and replacing it with API 2.0 dll files.
    Also, your question is related to SCSM, please post at SCSM forum if you have further question.
    Juke Chou
    TechNet Community Support

  • How to create drop down option in service manager 2012 incident portal

    Hii,,
    Please assist how to create drop down option in service manager 2012 SP1 default incident portal. We would like to provide the drop down option in "Please enter the title for the Issue" to our users.
    Regards, Syed Fahad Ali

    As was already referenced, you could use a Simple List for the prompt, however if you are referring to the default General Incident that is available out-of-the-box, you might be limited in what you can modify. 
    I did some work for a client, that wanted to have a list and other options for the General Incident through the Portal. So, I ended up having to create a custom General Incident instead of using the default one, which will then allow you to add any type
    of prompts, and configure them as you want (i.e. with a simple list). 

  • How to Upgrade Service Manager 2012 SP1 with Windows 2008 R2 to SCSM 2012 R2 with Windows 2012 R2

    Hi,
    We are using Service Manager 2012 SP1 UR2 with Windows 2008 R2.
    I am planning to upgrade Service Manager to R2 with Windows 2012 R2. I found the steps to upgrade SCSM 2012 Sp1 to R2 but need assistance to upgrade with 2012 R2 OS.
    Please suggest how to achieve the above mentioned objective.
    Regards, Syed Fahad Ali

    Virtualization solves this problem handily, by allowing you to create a new server to run the new program on the same hardware. it also solves the related problem of moving off unsupported hardware without changing OS or application. VMware is my personal
    favorite, but Hyper-V, Xen, and VirtualBox all have similar capabilities.
    Compare the cost of work and confidence in success of a upgrade, where any of thousands or millions of uncontrolled settings could cause an issue, to the cost of work and confidence in success of installing a new OS instance and configuring a known state
    for the new environment.
    In short, upgrades should no longer be a thing. there are just too many ways they can go wrong, and it's far too easy to create a new OS with minimal expense and effort.

  • Service Manager 2012 R2 is not in a valid state.

    I currently have Service Manager 2012 SP1 with update roll up 4 installed on our server. I also installed the web portal on the same server. later I installed the web portal on a separate server(I could not remove the web portal as we had already
    started using the server and I can not just uninstall the web portal. I stopped the data warehouse jobs and updated the Data warehouse to 2012 R2 with no problems and started the update for the service manager server and I get an error when the setup
    splash shows up " Microsoft System Center 2012 R2 Service Manager is not in a valid state". this is now a production server. I have backuped the DB and the management packs. for worst case. I have tried to run the update from all
    user accounts I can think of I even detached the date warehouse thinking that some of the jobs had not stopped. I found a few links online regaurding the removal of the web portal with out removing the management server but I don't want to do
    this on a production server. I am now stuck with a 2012 R2 data ware house( I can't use) and a 2012 SP1 management server and web portal. please help!!

    here is the SCSM setup wizard log (part of it)
    this is what I have found "Could not find WCS portal web site name in setup registry!"
    the web portal was installed and sharepoint was never installed then moved to a different server..
    how do I remove the self-service portal and web parts of service manager with out removing the management server. (having to back up MPs and DBs and restoring them)
    05:59:45:All vital setup files found.
    05:59:45:Upgrading Service Manager 7.5.2905 with 7.5.3079
    05:59:45:Checking dependencies for Server upgrade...
    05:59:47:Getting Management Group information from PMR-SC-SM:ServiceManager
    05:59:47:[GetManagementGroupPropertiesFromDB]:  Opened the DB connection using Data Source=PMR-SC-SM;Initial Catalog=ServiceManager;Integrated Security=True;Persist Security Info=False.
    05:59:47:[GetManagementGroupPropertiesFromDB]:  Found Management Group information.
    05:59:47:[GetManagementGroupPropertiesFromDB]:  Found Primary SDK server:PMR-SC-SM.adi.local.
    05:59:47:Validating SmAdminRoleGroup
    05:59:47:Checking dependencies for WCS Portal upgrade...
    05:59:47:Could not find WCS portal web site name in setup registry!
    05:59:48:***ERROR*** Microsoft System Center 2012 R2 Service Manager: Microsoft System Center 2012 R2 Service Manager is not in a valid state.

  • High Watermark issue with monitoring Service Manager 2012 R2

    Hi,
    Our customer has a Service Manager / Operations Manager 2012 R2 environment where SCOM will regularly generate an alarm related to High Watermark monitoring on the Service Manager data warehouse - not every day though. The alarm looks like this:
    Value of 3559 is not higher than 3559
    This value hasn't changed for weeks.
    Having done a lot of searching we have found nothing but reference to the same recurring flow of information where people keep mentioning different values but there is no conclusion of what this might be caused by and how to solve it. The solutions
    have become outdated anyway. Here is one example:
    http://social.technet.microsoft.com/forums/systemcenter/en-US/889af8f3-cdf8-4d88-ae99-5dbe18d529ef/service-manager-2012-data-warehouse-high-watermark-monitor
    The Service Manager Database Account in SCOM is our service account that has sysadmin in SQL. Basically, with regards to the security configuration, our customer should be covered.
    To my knowledge agent-based and agentless monitoring have both been supported since SCSM 2012 SP1. Also, we have the latest management pack for Service Manager monitoring in SCOM, at the moment this should be
    7.5.3079.0.
    As mentioned above the value has not been changing for quite some time and nor has it in the database.
    My questions are the following:
    - Is there anyone that has found a solution in the meantime, especially with regards to R2?
    - What is the purpose of High Watermark monitoring for the data warehouse? Why does this need to be monitored?
    - We would like to understand the nature of this value better. Should it be higher each day compared to the day before?
    - Could it just be overriden in SCOM?
    Many thanks in advance!

    Rather unexpectedly, the SCOM alarm disappeared overnight and when checking the workflow in the incident that was generated from the alarm, the incident got a Resolved status right before midnight at 23:59:58. We have a ConfigMgr connector that is scheduled
    to run at 23:00 which we had disabled a day ago to check something else. But I don't think it had anything to do with this. As the alarm has disappeared from the SCOM console, we have also checked the registry values. Now, instead of "3559 3559 3559"
    it says "3559 3559 3585". We have had the 3559 value since 18th July, and out of a sudden something must have been triggered, causing the value to increase. What was triggered and how, no idea... Not sure either what it means that only one of the
    Three numbers have been updated with a new value. When talking about the DW jobs, using the SMlets we can see every day that, MPSync, DWMaintenance and the ETL jobs are working well. What we have had though for a longer time is that the cube processing
    tends to have issues once a week, where processing won't finish and the cubes get hanging in a running state. We can fix that manually every time and often we don't even have to touch DWMaintenance or the ETL jobs, we don't need to go beyond manually
    working with the cube processing jobs themselves. So it might not have an impact on the ETL jobs themselves. Occasionally we do find ourselves in a situation where we we need to play around in the SQL database and manually set the required value (can't
    recall if it's 3, 6 or 7) cause we get an error in the DWMaintenance batch, but even though that's an occasional issue it's not constant and also something we can solve, and furthermore it's another known issue outside of the high watermark issue. So
    we are a bit uncertain but can at least see that something works sometimes that sometimes increases the high watermark value :). In our case.

Maybe you are looking for

  • Using iTunes *just* to transfer music to the iPod?

    More iTunes frustrations... As my original hard disk is nearly full, I've installed a second hard drive (let's call it G:); this is where I intend to keep my music files for use by my Squeezebox. Before installing iTunes, I copied the contents of My

  • Merging Hundreds of PDFs using a LIST OF FILES

    I need to merge -- in a very particular order -- several hundred PDFs. I have a spreadsheet (which could easily be made into a text file, CSV, etc.) containing the filenames in the order that I need to merge them. Unfortunately, the order that I need

  • Hyperlinks für Exceltabelle auf bestimmte Seiten eines PDF-Dokuments

    Guten Tag, wie kann ich Hyperlinks in einer Exceltabelle setzen, die nur auf bestimmte Seiten in einem PDF-Dokument verweisen? Es ist gewünscht, dass wenn man auf den Link geht, sich dann die richtige Seite in diesem einem PDF-Dokument öffnet und nic

  • Connecting to the t.v....what connection is best?

    I thought I should probably put this in its own post as it's really a different question to which I had before. Basically I want to connect my MBP to an older t.v. (from 2001) which has RCA cables and S-Video input. Here are my questions: 1) Does it

  • How much fast are the new iMac's?

    I've been looking at upgrading my G5 PowerMac for a while and now Apple has just updated the iMac. How much faster are the new models over the just superseded ones and my G5 (spec below). I mainly us it for my work with Photoshop CS2 and the G5 does