Create a view - All Service Requests that contain a Completed Review Activity

In the Service Manager 2012 console, is it possible to create a view that displays Service Requests, with the view criteria being something like as follows:
Service Request status is In Progress
Service Request contains a Review Activity where the Review Activity status is In Progress
My intent is to provide a way for Service Desk Operators to be able to identify requests that are ready for implementation.
From what I'm seeing in the console, this sort of view is not possible as it appears that any view criteria must be derived from the view's target class.

Nothing like a bit of thread necromancy in the morning.
It turns out the solution to this question was quite straight forward (once you know where to look...)
The trick is creating a view based on one of the Service Request combination classes rather than the basic class itself, and then rephrasing my requirement after realising that what I was really after was a view containing Requests that have an In Progress
Manual Activity.
So...open the console, go to Work Items, right click on
Service Request Fulfillment and select Create View
On the General tab, give your view a name and select a Management in which it will be stored.
On the Criteria tab, click Browse to select a specific object class.  Change the
Frequently used basic classes filter to Combination classes then enter 'Service Request' in the filter field.
Pick the Service Request and Activity class.
Now when configuring the criteria, you'll notice a little arrow next to the
Service Request class. Click on this arrow to expand the node, and select the
Contains Activity class.
Under the Available properties box, enter 'Status' in the search field. In my environment, I got two Status fields. Each corresponds to a specific Activity class. Select both of them and click
Add.
One of the Criteria will look like 'Contains Activity[Activity]Status'. Keep this one and delete the other from the Criteria box. Change the value to 'Completed'
While we're at it, select the Service Request class and add a criteria for the Service Request Status = 'In Progress'.
Click on the Display tab and select whatever fields you want to display in this view.  Click
OK to save this view.
Now go to the Administration workspace and select the
Management Packs node. Export your management pack that contains your view and open the management pack in a text file viewer. Notepad++ works for me...
First search for the string that you used to name your view. It will be found towards the bottom of the MP in a DisplayString element in the LanguagePacks XML element. This element will have an ElementID.
Select the ElementID and search the entire file for this string. You want the instance that resides within a Presentation | Views | View element. From this point, scroll down until you get to a Criteria element. Within the Criteria element you will find
the two Expressions that were entered via the GUI. One of the Expressions corresponds to the Service Request.Status=In Progress criteria, the other corresponds to the Activity.Status=In Progress criteria. We will be changing the Activity criteria so that it
explicitly refers to a Manual Activity.
Identify the Expression that has the Property containing the string 'System.WorkItemContainsActivity'. We will be changing the TypeConstraint attribute of this criteria.
In this line, Replace the string 'System.WorkItem.Activity' with 'System.WorkItem.Activity.ManualActivity'
Save this file and import the management pack into SCSM

Similar Messages

  • How to create a view for all Service Requests that are not approved by reviewer

    Hallo,
    I want to create a view in the Service Requests library that shows all SRs that are not approved. How to configure condition that says: if a SR has related Review Activity which is In Progress, show that SRs?
    I couldn't find this when creating the view. Thank you.

    So here's the first problem with that: Which review activity? a SR can contain multiple RAs, so how do we decide if an arbitrary SR is approved or not? 
    As to the specific language you use (Any child RA is In Progress) you might want to look at the criteria from the default Change approval view, which does something similar: 
    <QueryCriteria Adapter="omsdk://Adapters/Criteria" xmlns="http://tempuri.org/Criteria.xsd">
    <Criteria>
    <FreeformCriteria>
    <Freeform>
    <Criteria xmlns="http://Microsoft.EnterpriseManagement.Core.Criteria/">
    <Expression>
    <And>
    <Expression>
    <SimpleExpression>
    <ValueExpressionLeft>
    <Property>$Context/Path[Relationship='CoreActivity!System.WorkItemContainsActivity' TypeConstraint='CoreActivity!System.WorkItem.Activity.ReviewActivity']/Property[Type='CoreActivity!System.WorkItem.Activity']/Status$</Property>
    </ValueExpressionLeft>
    <Operator>Equal</Operator>
    <ValueExpressionRight>
    <Value>$MPElement[Name="CoreActivity!ActivityStatusEnum.Active"]$</Value>
    </ValueExpressionRight>
    </SimpleExpression>
    </Expression>
    <Expression>
    <SimpleExpression>
    <ValueExpressionLeft>
    <Property>$Context/Property[Type='CoreChange!System.WorkItem.ChangeRequest']/Status$</Property>
    </ValueExpressionLeft>
    <Operator>Equal</Operator>
    <ValueExpressionRight>
    <Value>$MPElement[Name="CoreChange!ChangeStatusEnum.InProgress"]$</Value>
    </ValueExpressionRight>
    </SimpleExpression>
    </Expression>
    </And>
    </Expression>
    </Criteria>
    </Freeform>
    </FreeformCriteria>
    </Criteria>
    </QueryCriteria>
    This is a simple AND criteria with two componets. one looking for a Review Activity (TypeConstraint='CoreActivity!System.WorkItem.Activity.ReviewActivity') which is related to the targetting CR by Contains Activity ($Context/Path[Relationship='CoreActivity!System.WorkItemContainsActivity';
    Context in this... context means the CR targeted by the view) where it's status (/Property[Type='CoreActivity!System.WorkItem.Activity']/Status$) is In Progress ($MPElement[Name="CoreActivity!ActivityStatusEnum.Active"]$). The other is filtering
    for the target change request's status ( $Context/Property[Type='CoreChange!System.WorkItem.ChangeRequest']/Status$) is In Progress ($MPElement[Name="CoreChange!ChangeStatusEnum.InProgress"]$). 
    You could convert the second criteria to point to SRs and SR status values, and then use the similar text for the first criteria. i'd recommend
    Anton's Advanced View Editor (or
    the free version) to do the criteria adjustment. 

  • 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

  • Report to show Service Requests that are open on a day selected by the user

    Dunno if I'm being thick, but I can't see how to do this in a report/dashboard...
    The user selects a day and the report pulls back all the Service Requests that were open on that day using the following logic...
    Service Request Opened Date <= Selected date & Service Request Closed Date >= Selected date
    Is this possible?

    You can do this with a report or a dashboard.
    For a report, create a report your subject ares, like Service Request. In Step 3, Create a prompt on your date and choose Column Filter Prompt. Give the prompt a caption ("Enter/Choose Date" for example). Choose the date field for the Filter on Column. Determine how you want the users to select the value and hit OK. My experience has been that you need to let users type in the date, as opposed to choosing from a drop-down list, because of the volume of data and performance reasons, but test it to determine what works best for your needs.
    For a dashboard, you would need to create a dashboard prompt for your dashboard report. You do this by creating a new report on your intended subject area, i.e. Service Request. Instead of creating the report as you normally do, you need to click on the Create Dashboard Prompt button at the top left, just below the Oracle logo. Choose the right reporting area, then complete the prompt details. Don't forget to allow for the prompt in your report.
    I always recommend that you consider purchasing a great book on reporting, written by Mike Lairson. It is an excellent resource for nearly all of your reporting questions. You can find it on amazon.com.
    http://www.amazon.com/Oracle-Demand-Reporting-Osborne-ORACLE/dp/0071593047/ref=sr_1_1?ie=UTF8&s=books&qid=1274893170&sr=8-1
    Good Luck,
    Thom

  • I want to create a "Play All" chapter marker that will play the video from start to finish in addition to the standard chapters I have-I guess I can auto start the DVD but would prefer a button-how and where would I put this "play all" marker??

    I want to create a "Play All" chapter marker that will play the video from start to finish in addition to the standard chapters I have…I guess I can auto start the DVD but would prefer a button…how and where would I put this "play all" marker?? Thanks..

    The start chapter button is a play the whole movie button regardless of how many other markers you have.
    Once a DVD starts playing it continues to the end.
    Chapters marker simply gives the viewer a place to start playback whether it be the start, middle or near the end.
    Al

  • What should I do when a receive a popup prompting I'm about ro view an encrypted page that contains some unencrypted informationshould click on the ok button.

    I am about to view an encrypted page that contains some unencrypted information and there is an Ok button should I click on the Ok button.

    Have you tried the following?
    I'm assuming there is nothing written on the second page.
    Scroll down to the second page and write something.
    Highlight everything on that page Usually this will show in blue including the invisibles.
    Make sure you attempt to highlight everything by selecting the whole page.
    Press Backspace/delete until all of that page is clear.
    Continue until your cursor lands on your first page.
    By then the offending second blank page should have gone.
    I tried this procedure a few minutes ago and it worked.  (Pages 5.5.2)
    Regards,
    Tallberg

  • Could not execute view config service request. This usually happens when an invalid view config service request is made, or when a read only Oracle Endeca Server receives a view config service request. Error message: Error applying updates: Unsupported la

    Hi,
    I have some data loaded into the data-domain in Endeca 3.0. When I was creating views in studio I repeatedly get this message when I say save view:
    Could not execute view config service request. This usually happens when an invalid view config service request is made, or when a read only Oracle Endeca Server receives a view config service request. Error message: Error applying updates: Unsupported language ${DEFAULT_LANGUAGE}
    In the workspace.prm file I have set ${DEFAULT_LANGUAGE}=en
    May I know why this happening and a remedy for it. Appreciate you help.

    Hi,
    I have some data loaded into the data-domain in Endeca 3.0. When I was creating views in studio I repeatedly get this message when I say save view:
    Could not execute view config service request. This usually happens when an invalid view config service request is made, or when a read only Oracle Endeca Server receives a view config service request. Error message: Error applying updates: Unsupported language ${DEFAULT_LANGUAGE}
    In the workspace.prm file I have set ${DEFAULT_LANGUAGE}=en
    May I know why this happening and a remedy for it. Appreciate you help.

  • Is there a way to create a smart folder in iTunes, that contains the most recent (say 10) used playlists?

    Is there a way to create a smart folder in iTunes, that contains the most recent (say 10) used playlists? By having this I would be three clicks (touches from what is recent).
    Thanks

    100s with about 30 folders, comprised on different moods, years, genre, favorites, audiobooks, podcasts. Being accessed from multiple Macs and Apple TVs.

  • Where in FireFox 4.0.1 do I have the option I am about to view an encrypted page that contains some unencrypted information to uncheck?

    In the previous version of Firefox there was an option under Security > Warning Messages to either check on or off the following statement "I am about to view an encrypted page that contains some unencrypted information" Can you tell me where in FF 4.0.1 this option has been moved to or what has replaced this question?

    I don't know whether there is a button in the dialogs, but you can change your settings using the about:config preference editor.
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the filter box, type or paste '''security.warn''' and pause while the list is filtered
    (3) Bold items have been customized, and non-bold items are the default settings. I think the one you are looking for is '''security.warn_viewing_mixed'''.
    If you change the value and test on a real web page, does it do what you want?

  • Problem while creating followup to a Service Request

    Hi,
    I am trying to create a followUp to a service request. The problem is, it is not displaying all the followup transactions in popup. When I checked the configuration "Copy Control for Business Transactions", I am able to see more than I see in the popup.
    Could you please let me know, why I am unable to see all the transactions in the popup.
    Thanks,
    Sandeep

    Hi Maggie,
    I checked it. CRM WEB CLIENT is assigned for all the transaction types. In my copy control I manitained around 10 transactions.
    when I cliked on create follow-up, 5 transaction types I am able to see in popup. But other 5, I am not able to. not sure why.
    Thanks,
    Sandeep

  • Creating a form with a field that contains a simple math problem.

    I am creating a form in Acrobat 9 Standard that contains a field that requires a simple math function (divide).
    if (QuantityRow1 > 0)
    ExtensionRow1 / QuantityRow1
    Take the value input in ExtensionRow1 and divide it by the value in QuantityRow1. I have included an IF statement to prevent an error that occur if QuantityRow1 were equal to zero.
    After inputting the data into the two fields I tab past the field where I expect to see my result and the field remains blank. I don't receive any error messages.
    Any ideas? Thanks - jb

    This is a duplicate of your question on Acrobatusers.com (
    http://answers.acrobatusers.com/Need-simple-math-operation-function-Acrobat-9-Standard-cre ating-form-q142800.aspx
    Did the information provided there not help you with your problem?
    Karl Heinz Kremer
    PDF Acrobatics Without a Net
    PDF Software Development, Training and More...
    [email protected]
    http://www.khkonsulting.com

  • Where can I view all Business rules that are currently running

    Hi,
    I was told that this is available in our Planning v11 but can't find it.
    where can I view all processes (such as Business rules) that users are currently running ?
    thanks.

    Hi,
    They are probably meaning the job console > Tools > Job console.
    More information > http://download.oracle.com/docs/cd/E12825_01/epm.111/hp_user/job_stat.html
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Would like to know how I can view all my apps that we're downloaded to iTunes since you changed your system it has disapeared

    How can I view what apps were down loaded to iTunes and be able to add or delete them since your company updated your system it is impossible to view them or adjust them I would also like to know is there any way to change it back to the old system It was alot easier to deal with

    Um, you're not writing Apple.  We're all users.
    1.  You can not downgrade iOS.  It's not supported nor has it ever been supported
    2.  To view all the apps you have ever downloaded, open the App Store and tap on the Purchased Tab.  They'll all be listed. 

  • I want every email I send through gmail to be written in Verdana font, but NOT to view all pages in that font.

    Every time myself or my colleague sends an email through our google apps account we have to change the font to verdana. we can't seem to find ANY way (neither in the gmail settings nor in the firefox settings) to change it so that all of our outgoing messages are written in Verdana.
    I went to firefox preferences and found the font settings and changed them all to verdana and UN-checked "allow pages to select their own fonts", however, then ALL fonts were changed to verdana, including our signature at the bottom of each email (which we don't want in verdana) and also all of the gmail pages appear in verdana as well. We just want our outgoing messages (except fro the signature at the bottom) to be in Verdana, and I can't figure out how to do it.
    Also, when in the Firefox Preferences / Content / Fonts & Colors, I'm not really sure what each part means. For example, what does "default font" refer to??? Visualization of web pages will be in that font? or writing that I myself do? Also, then once entering into Advanced, I'm not sure what each scroll-down menu refers to: Proportional, Serif, Sans-serif, and Monospace?? Which one of those should I make Verdana? And, what should the rest be if I just want to "normal" (default?) settings.
    Please help. Thank you very much.

    >>So I guess even the computer geniuses cant work out
    my problem
    Guess as you wish but you are wrong. Centering a site is
    reasonably
    simple... if you are willing to deal with code. There is no
    "Center Site"
    button. Design view is OK but extremely limited. If you are
    willing to
    settle for those limitations, and obviously you are not, you
    will be fine.
    Clearly this approach is not acceptable so you have to move
    to the next
    level -> An understanding of HTML & CSS and most
    importantly, how they
    interact. I could give you the code but your next question
    would be, "Where
    do I put it?".
    >>I thought you guys would be up for a challenge.
    We are. Are you?
    >>Or will I have to start from scratch again?
    That is the only way but only if you can figure out how your
    code got so
    badly mangled. Otherwise, you are likely to arrive at the
    same result.
    Please trust me when I say if you had build that entire page
    from DW's
    design view and never touched the code it is impossible for
    the page code to
    be what it is. If the page was actually build in DW design
    view someone
    subsequently took a hatchet to the code DW produces.
    Walt
    "mattyjones80" <[email protected]> wrote in
    message
    news:gr3lsv$s0o$[email protected]..
    >I built the entire site with dreamweaver. I used CS3 for
    all my images.
    >Some of
    > my borders were designed with CS3 so maybe thats why it
    seems not normal.
    > This
    > is my first site I have built. I learnt how to do it
    through lynda.com
    > tutorials. So maybe they are teaching me incorrectly. It
    seems to work ok
    > thou
    > am I right? So I guess even the computer geniuses cant
    work out my
    > problem. I
    > thought you guys would be up for a challenge. So is my
    site a lost cause
    > or can
    > I fix it. Or will I have to start from scratch again?
    >

  • Can I sort a column based upon a "find" word?  i.e. I want to group all the rows that contain a certain word.  I'm using Numbers '09 on a Macbook Pro.  Thanks for your help!

    A second question: I am creating a database of products for my point of sale system.  I am using a product list sent to me by a vendor.  Can I pull out certain words in their description and add them to a new column.  i.e. The vendors' description in one cell is "Blueridge Guitar Dreadnought."  Can I automatically add the word "Dreadnought" to a new column in the same row?

    You can extract the word case where the string contains case using
    =IFERROR(IF(FIND("CASE",B)>0,"CASE",""),"")
    But that doesn't solve the issue of what goes in that column for lines where the product ins not a case.
    Looking at the other columns, I don't see a means of getting "Hardshell" from the given data using a formula.
    A semi-manual method using the "Show rows... feature of the Reorganize panel might prove efficient.
    Here, the Show rows... displayd was applied, then CASE was entered in the first cell in column A and filled down to the last visible cell. As can be seen below, the fill operation placed "CASE" in only the rows where column B containsed "CASE".
    Regards,
    Barry

Maybe you are looking for

  • Why can't I open a blank tab?

    I cannot open a blank tab, when click on the '+' sign next to opened tab(s), a blank tab should open, but for me simply nothing happens, so what do I do to fix this?

  • In Query key figure are not populated

    Hi Gurus, i am using a RSCRMBAPI to get the out put of my query into a Ztable but when i run my program the Ztable is getting data but no key figures are getting populated. plz help thanks neelu

  • Move statement.(adding space..)

    hi experts, i have one problem with one field. depending on first field ,second field should display some value. ex:      if p_v_wagetext = '        '.     move space to it_display-bet03.     endif.     it is not working for me...... ex:    IF v_wage

  • Is flash the tool to create the most interactive sites

    Can Flash do highly interactive graphically intense websites like a 3d computer game or is the internet still to slow for this? Secondlife.com seems to be getting close. Can Flash create a site where you can zoom in and out and rotate objects. Can an

  • About the RFC lookup

    Hi Gurus, Please tell me What is LOOKUP AND WHAT IS RFC LOOK UP  1)HOW IT WORKS WHY WE HAVE TO CONFIGURE THE RFC ADAPTER AND IN WHICH DIRECTION WE HAVE TO CONFIGURE . 2)WHY WE NEED BAPI'S FOR RFC LOOK UP PLEASE TELL ME CLEARLY IN GENERAL ENGLISH . TH