SCSM 2012 - Activity Reports

I am trying to report on the amount of activities an analyst closes each day and I don't think I have the report quite right.
The report is shown below, I think this report shows all the activities an analyst has completed for any activities created on those particular days e.g Chris Phillips completed 30 activities
that had been created on 13/10/2014 - I need to see how many activities he actually completed on the 13/10/2014 - all of them, not just the activities that were created on 13/10/2014 .
I can't find a Completed data field - can anyone help me with this?

Hi
You can use the actual end date as the date the activity was completed. This is available within the activitydim.
There is no workflow to set the activity end date for manual activities but you can use this management pack to fix that.
https://gallery.technet.microsoft.com/SCSM-Actual-Start-and-End-2c6d40e2
Thanks

Similar Messages

  • SCSM 2012 Custom report Activity reviewer

    Hi Everyone,
    We are creating reports for viewing all RA as as their approvers, we already accomplished this. But the problem, we are trying to add the users who added thes reviewers. I can't find a view for this. We are creating reports based on the datawarehouse dwdatamart
    views. In console we can view who is the one added a approver via history tab of RA how about in reporting, Thanks in advance. 

    Accessing history from the operational database is not so easy. Each class and each class extension has an "_Log" table, for example "MT_System$WorkItem$Incident_Log".
    These tables contain all of the pre and post values for each class property.
    If would probably be easier to create an assembly that queries the history records programatically and add some code to your report to use this assembly and display the information.
    Rob Ford scsmnz.net

  • SCSM 2012 Moving Reporting to new Reporting Server

    is there any step by step procedure to move the scsm reporting to a new report server?
    Georges Mouawad
    Jreij12

    Hi,
    this link shows how to update the connection strings of the DataSources on the report server.
    I did the migrating of the report server from a server to another.
    I'll write a step by step procedure as soon as possible.
    Anyway thank you Roman
    My Best Regards
    Jreij12

  • Scsm 2012 - SQL reporting from business services

    when i process a report in SQL Reporting Services for Business Services - and many other configuration items - I put a column in the report for priority and when I output the report it appears as a number which is wrong.
    For example, I have in the pruiority field for business services a drop down of High, Medium and Low - when I output the report this value appears as a number rather than the work High, Madium or Low.
    Does anyone know why this is and how it can be fixed?
    tamrep

    It sounds like your Report showing the Priority ID rather than the Priority value.
    You need to add a JOIN Statement in your SQL query to join on the Priority ID from the ServiceDimvw to the Priority ID from the ServicePriorityvw.
    Something like this:
    SELECT DisplayName,
    Priority.ServicePriorityValue
    FROM ServiceDimvw
    LEFT OUTER JOIN ServicePriorityvw as Priority on ServiceDimvw.Priority_ServicePriorityId = Priority.ServicePriorityId
    Cheers
    Alex

  • Reporting Tab is not showing in SCSM 2012 SP1 Console

    I'm working with SCSM 2012 SP1. But after installing data ware house only "DataWareHouse" tab appares no "Reporting" tab. And it shows below MSG:
    And only the below reporting management pack are available in the Data Ware House >> Management pack area.
    I already check data warehouse server 'System Center Data Access Service' and 'SQL Server reporting Service', borth are running. But still 'Reporting' tab is not there.
    Mithun Dey Web: http://cloudmithun.wordpress.com If this may give your necessary resolution please mark it as Answre.

    At last I solve the problem. THere is 2 solution for resolve the issue.
    Force start all warehouse job.
    Un register and reregistared DataWareHouse againg.
    In my case I do the borth after reregister datawarehouse I wait 1hr after that I manualy start the warehouse jobs. And it works for me.
    Mithun Dey Web: http://cloudmithun.wordpress.com If this may give your necessary resolution please mark it as Answre.

  • SCSM 2012 - Business services reporting

    When reporting on business services I go to the ConfigItem Cube
    When I look at the ServiceDim there is an option for 'Business Detailed Descripion'. This is always blank when I report on it.
    When I set up business services in SCSM 2012 I do not see a field called 'Business Detailed Descripion' - where should i enter this information in SCSM 2012 so that I can add it to my report?
    tamrep

    Hi Tamrep,
    If you open Business service in the Authoring Tool and you explore in the class properties, you will see the "Business Detailed Description" field.
    But this is not by default available in your form. If you want, you can add this field with the Authoring tool to the business service form and make it available.
    Regards,
    Dennis

  • How to generate Incident Report with incident description field? in SCSM 2012 sp1

    Can incident description field be displayed in reports? in SCSM 2012 SP1
    Regards
    Shujjat
    Metalsoft

    ALTER PROCEDURE [dbo].[ServiceManager_Report_Incidents]
    @Classification nvarchar(max) = '-1',@SupportGroup nvarchar(max) = '-1',@ID  nvarchar(max) = null,@IncludeDeleted bit = 0,@LanguageCode nvarchar(max)= 'ENU'
    AS
      DECLARE @tableClassification TABLE (value nvarchar(256)) 
      INSERT @tableClassification (value)
      SELECT * FROM dbo.fn_CSVToTableInt(@Classification)
      DECLARE @tableSupportGroup TABLE (value nvarchar(256)) 
      INSERT @tableSupportGroup (value)
      SELECT * FROM dbo.fn_CSVToTableInt(@SupportGroup)
      DECLARE @tableID TABLE(value nvarchar(256))
      INSERT @tableID (value)
      Select * FROM dbo.fn_CSVToTableString(ISNULL(@ID, ''))
    SELECT DISTINCT
    I.Id,
    I.Title,
    Classification = ISNULL(ClassDS.DisplayName,ClassEnum.IncidentClassificationValue),
    ClassEnum.IncidentClassificationId AS ClassificationId,
    ClassEnum.ParentId,
    Support = ISNULL(SupportDS.DisplayName,SupportEnum.IncidentTierQueuesValue),
    SupportEnum.IncidentTierQueuesId AS SupportId,
    Status = ISNULL(StatusDS.DisplayName, StatusEnum.IncidentStatusValue) ,
    StatusEnum.IncidentStatusId AS StatusId,
    AssignedTo.DisplayName AssignedToUserName,
    AssignedTo.UserDimKey AssignedToUserId
    FROM dbo.IncidentDimvw I
    INNER JOIN dbo.WorkItemDimvw WI  ON I.EntityDimKey = WI.EntityDimKey
    LEFT OUTER JOIN  dbo.WorkItemAboutConfigItemFactvw ON  dbo.WorkItemAboutConfigItemFactvw.WorkItemDimKey = WI.WorkItemDimKey   AND (@IncludeDeleted = 1 OR dbo.WorkItemAboutConfigItemFactvw.DeletedDate IS NULL)
    LEFT OUTER JOIN  dbo.WorkItemAboutConfigItemFactvw CIFctForFilter ON  CIFctForFilter.WorkItemDimKey = WI.WorkItemDimKey      AND (@IncludeDeleted = 1 OR CIFctForFilter.DeletedDate IS NULL)
    LEFT OUTER JOIN  dbo.IncidentClassificationvw AS ClassEnum ON I.Classification_IncidentClassificationId = ClassEnum.IncidentClassificationId 
    LEFT OUTER JOIN  dbo.DisplayStringDimvw ClassDS  ON ClassEnum.EnumTypeId=ClassDS.BaseManagedEntityId                           
    AND ClassDS.LanguageCode = @LanguageCode
    LEFT OUTER JOIN  dbo.IncidentTierQueuesvw AS SupportEnum ON I.TierQueue_IncidentTierQueuesId = SupportEnum.IncidentTierQueuesId 
    LEFT OUTER JOIN  dbo.DisplayStringDimvw SupportDS  ON SupportEnum.EnumTypeId=SupportDS.BaseManagedEntityId                    AND ClassDS.LanguageCode =
    @LanguageCode
    LEFT OUTER JOIN  dbo.IncidentStatusvw AS StatusEnum  ON StatusEnum.IncidentStatusId = I.Status_IncidentStatusId 
    LEFT OUTER JOIN  dbo.DisplayStringDimvw StatusDS  ON StatusEnum.EnumTypeId=StatusDS.BaseManagedEntityId                      AND StatusDS.LanguageCode
    = @LanguageCode
    LEFT OUTER JOIN  dbo.WorkItemAssignedToUserFactvw  ON dbo.WorkItemAssignedToUserFactvw.WorkItemDimKey = WI.WorkItemDimKey     AND (@IncludeDeleted = 1 OR dbo.WorkItemAssignedToUserFactvw.DeletedDate IS NULL)
    LEFT OUTER JOIN dbo.UserDimvw AS AssignedTo ON dbo.WorkItemAssignedToUserFactvw.WorkItemAssignedToUser_UserDimKey = AssignedTo.UserDimKey
    WHERE
    ((-1 IN (Select value from @tableClassification)) OR (I.Classification_IncidentClassificationId IN (Select value from @tableClassification)))
    AND
    ((-1 IN (Select value from @tableSupportGroup)) OR (I.TierQueue_IncidentTierQueuesId IN (Select value from @tableSupportGroup)))
    AND
    ((@ID IS NULL) OR (I.Id IN (Select value from @tableID)))
    -- exec ServiceManager_Report_Incidents @Classification=N'281,415,9,135',@SupportGroup=N'72,-1,69,43',@ID=N'IR55145'

  • FIM Reporting ETLScript PowerShell Script for SCSM 2012?

    Hi,
    The FIM Reporting Deployment Guide is great, however on a few occasions it forgets to mention where you meant to execute things (http://technet.microsoft.com/en-us/library/jj133855(v=ws.10).aspx) .
    For example, if it wasn't for the screenshot in the article, we would not have known that we need to run the ETLScript from the FIM Service/Portal server.
    Everything until the ETLScript has thus far worked; and we have deployed the Service Manager 2012 console on the FIM Service/Portal server (since we are using SCSM 2012 for FIM Reporting).
    However, it appears that the ETLScript (in the deployment guide) has been written for SCSM 2010.
    So, has Microsoft or anyone published an updated SCSM 2012 ETLScript script?
    Thanks,
    SK

    Could this be it?
    http://gallery.technet.microsoft.com/PowerShell-Script-to-Run-a4a2081c

  • Error Installing FIM Reporting in FIM 2010 R2 with SP1 - SCSM 2012 [CheckFIMWebSiteorSolutionPackExisting]

    I am running into the below issue. I am installing FIM 2010 R2 SP1 Reporting with SCSM 2012 [SCSM successfully installed].
    FIM R2 Reporting installation is failing with both Wizard and Command line.
    Command line captures below error: Can some one help on this?
    Calling custom action Microsoft.IdentityManagement.SharePointCustomActions!Microsoft.IdentityManagement.ManagedCustomActions.SharepointCustomActions.DoesWebsiteOrSolutionPackExist
    Property name = 'SHAREPOINT_URL', value = 'http://myurl.
    Property name = 'UILevel', value = '2'.
    CustomAction CheckFIMWebSiteorSolutionPackExisting returned actual error code 1603 (note this may not be 100% accurate if translation happened inside sandbox)
    Action ended 0:27:20: CheckFIMWebSiteorSolutionPackExisting. Return value 3.
    Action ended 0:27:20: INSTALL. Return value 3.
    In below link, the above question is unanswered. Kindly help.
    http://social.technet.microsoft.com/Forums/systemcenter/en-US/37b1af85-aef0-422b-9417-7364d51d0df4/installing-fim-reporting-in-fim-2010-r2-with-sp1?forum=systemcenterservicemanager

    Hi All,
    Though we use SCSM 2012, the FIM 2010 Reporting (R2 SP1) installation throws the alert to run
    KB2561430 hotfix (when run throght console) and above error (when run through commnad line).This is actually a bug and MS have fixed that in one of its FIM hotfix rollup. I could move out of the above error by applying the FIM hotfix mentioned
    in the below link.
    http://blogs.technet.com/b/steady/archive/2013/06/12/fim-2010-r2-sp1-reporting-failure-scsm-2012-sp1-you-must-apply-patch.aspx
    Aswathy Raj

  • Does SCSM 2012 R2 supports reporting in fim 2010 r2?

    Hi Everyone,
    I have a scenario where i am configure fim reporting with SCSM and i have the fim version of 2010 r2 and scsm 2012 r2 ?It would be great if u provide me the information
    I have ran the powershell script on on datawarehouse successfully
    I have ran the initial sync and incremental sync successfully
    while running ETL script of Add Snapins its tell me this is not installed on the machine i am still seeking an answer to fix this issue?
    Your response is highly appreciated.
    Thanks,
    Aman Khanna

    According to, http://technet.microsoft.com/en-us/library/jj863245%28v=ws.10%29.aspx, this is the latest support wrt SCSM:
    System Center 2012 Service Manager with Windows Server 2008 and SQL Server 2008
    Although its not specifically listed below, can we deduce SCSM 2012 R2 will be supported by MIM 2015?
    http://blogs.technet.com/b/ad/archive/2014/11/18/microsoft-identity-manager-preview-release-1-is-now-available.aspx

  • Reports empty SCSM 2012 SP1

    Hello
    i have integrated  the component of datawahrehouse SCSM 2012 with my management server.
    But when i try to generate a report of list of inccident for example , it display me an empty report , i have tried to change some parameter (date , timezone ....) but no result !!!!
    prince

    Hello , 
    I have tried to process all the jobs manualy but no result !!!!!
    i cannot found the the 
    DWMaintenance job !!!!!!
    the some things when i try the powershell script (Windows 2012)
    in the event log of my data warehouse server i found this error : 
    ETL Module Execution failed:
     ETL process type: Extract
     Batch ID: 255
     Module name: Extract_System.ExtensionType_GEISER
     Message: L'ID '1033' des paramètres régionaux de la colonne source 'DisplayName' ne correspond pas à l'ID '1036' des paramètres régionaux de la colonne de destination 'System.Entity!DisplayName'.
     Stack:    à System.Data.SqlClient.SqlBulkCopy.AnalyzeTargetAndCreateUpdateBulkCommand(BulkCopySimpleResultSet internalResults)
       à System.Data.SqlClient.SqlBulkCopy.WriteToServerInternalRestContinuedAsync(BulkCopySimpleResultSet internalResults, CancellationToken cts, TaskCompletionSource`1 source)
       à System.Data.SqlClient.SqlBulkCopy.WriteToServerInternalRestAsync(CancellationToken cts, TaskCompletionSource`1 source)
       à System.Data.SqlClient.SqlBulkCopy.WriteToServerInternalAsync(CancellationToken ctoken)
       à System.Data.SqlClient.SqlBulkCopy.WriteRowSourceToServerAsync(Int32 columnCount, CancellationToken ctoken)
       à System.Data.SqlClient.SqlBulkCopy.WriteToServer(IDataReader reader)
       à Microsoft.SystemCenter.Warehouse.Utility.SqlBulkOperation.Insert(String sourceConnStrg, String sourceQuery, String destinationTable, Dictionary`2 mapping, String sqlConnectionStrg, Boolean& readerHasRows, DomainUser sourceSecureUser, DomainUser
    destSecureUser)
       à Microsoft.SystemCenter.Warehouse.Etl.ADOInterface.Insert(DomainUser sourceConnectionUser, DomainUser destinationConnectionUser)
       à Microsoft.SystemCenter.Warehouse.Etl.ADOInterface.Execute(IXPathNavigable config, Watermark wm, DomainUser sourceConnectionUser, DomainUser destinationConnectionUser)
       à Microsoft.SystemCenter.Warehouse.Etl.ExtractModule.Execute(IXPathNavigable config, Watermark wm, DomainUser sourceConnectionUser, DomainUser destinationConnectionUser, Int32 batchSize)
       à Microsoft.SystemCenter.Warehouse.Etl.ExtractModule.Execute(IXPathNavigable config, Watermark wm, DomainUser sourceConnectionUser, DomainUser destinationConnectionUser)
       à Microsoft.SystemCenter.Etl.ETLModule.OnDataItem(DataItemBase dataItem, DataItemAcknowledgementCallback acknowledgedCallback, Object acknowledgedState, DataItemProcessingCompleteCallback completionCallback, Object completionState)
    i think that this error appear when my management server try to sychronize and extract the data with the the data warehouse server .
    prince

  • User receives error when trying to access queues in SCSM 2012. Also cannot edit activities.

    Hi,
    I am trying to resolve an issue that a user has been struggling with in SCSM 2012 multiple times now. Everytime he tries to access a queue in the work items this error appears about 5 times:
    Error Message:
    Date: 7/29/2014 4:17:51 PM
    Application: System Center Service Manager
    Application Version: 7.5.2905.0
    Severity: Error
    Message: No matches were found for input string '$MPElement[Name='SMIncident!System.WorkItem.Incident.ProjectionType']$'. Cannot resolve ManagementElementReference.
    : No matches were found for input string '$MPElement[Name='SMIncident!System.WorkItem.Incident.ProjectionType']$'. Cannot resolve ManagementElementReference.
    After closing out all of the errors, the tasks panel no longer has any options.
    Also, when this user opens an activity, there is a red box outlining the form. He is unable to click 'OK' or 'Apply' even though the activity is In Progress. This means he is unable to make any changes to activity forms. I logged on to the user's compluter
    myself to see if this issue would just apply to him and I ended up with the same issues. This user experienced these issues before and switched to a new device where he no longer experienced these problems for a while. Now the issues have returned and I do
    not know how to help him. We have not had this problem come up before.
    Please help me understand what is causing these problems.
    Thanks,
    Nick

    Thanks for getting back to me so quick!
    You were correct to assume that I was referring to a View. All of our users have been added to a standard user role that providers that basic functionalities that they need. This particular user's access is exactly the same as the other users in his department,
    yet he is the only one who has experienced this problem. All of the user roles that we have added this user to contain at least 10 other users who have not reported any issue like this.
    I am wodering how this problem could only apply to this one user even after changing devices. I should also mention that with each of the devices that this user has worked on, there was a period of time when he was able to work in SCSM without
    any issues. What could have changed that caused this error to arrise on two separate occasions for just one user? 
    The biggest issue is the fact that he is unable to edit activities. Am I correct to assume that these two issues are connected?
    I hope this message helps to clarify the problem we are experiencing.
    Thanks,
    Nick

  • Manually adding AD user or Group mail address in SCSM 2012 R2 Configuration item

    Hi ,
    Since in our AD environment  some of the AD user's mail Id attribute is null, I  added the
    smtp mail Address value in SCSM 2012 R2 user configuration item ,
    After the AD connector synchronization, the manually entered mail Id is removed. I have also checked the property
    do not write null values for the property not set in AD in the Connector properties
    But still , the manually entered mail id is removed by SCSM
    so is it not the correct way  to add mail id manually ???
    Any suggestions???
    The mail Id property is required for mail notification feature in our environment

    the long and short of this is that the AD connector is behaving as designed and correcting values in SCSM from the authoritative source in AD.
    The connector should not be blanking values with that checkbox set. are you sure AD is actually
    Null, and not either an empty string or white-space characters? Can you reproduce this with other users? Might be worth reporting this if there is actually a bug in the connector. 
    Why wouldn't you set the Mail attribute in AD? there isn't any good reason for this to be null. 

  • FIM2010 R2 SP1 and SCSM 2012

    Hello folks!
    Im setting up a lab environment. I have installed SCSM DW and console, did pritty much what Carol did in this blogpost:
    http://www.wapshere.com/missmiis/installing-reporting-for-fim-r2
    At the stage where Im gonna add FIM Reporting I get a error saying I have to install the KB2561430. This i apparently a hotfix for SCSM 2010 SP1. So, Im not able to install this hotfix in my environment since im running SCSM 2012.. Any ideas ? Im stuck.
    Regards, Remi

    When you install FIM Reporting on a new server that has Service Manager 2012 SP1
    installed, follow these steps:
    Install the FIM 2010 R2 SP1 FIMService component. To do this,
    clear the Reporting check box.
    Upgrade the FIMService installation to build 4.1.3451.0.
    Run the change-mode installation for the FIMService, and then
    add Reporting.
    http://blogs.technet.com/b/steady/archive/2013/06/12/fim-2010-r2-sp1-reporting-failure-scsm-2012-sp1-you-must-apply-patch.aspx
    Cordialement, Best Regards, مع أجمل تحياتي ESSALIFI Mohamed Faiçal [MCT-MCSE]. If your question is answered please mark the response as the answer so that others can benefit.

  • SCSM 2012 - service requests auto complete even with activities in them

    I introduced SCSM 2012 on Monday at out company. I have a number of service requests templates that the service desk use.
    I have seen a major fault. Occasionally when a request is raised from the template the goes straight to complete and therefore the manual activities are stuck in pending and i have to kill the activities using a powershell script. Below is a screen shot
    showing an example.
    THis was raised from a template the service desk use frequently. The template is ok because we have used it several times. In the example below service desk raised the template - as ever when you raise a request the system moves it from 'new' to 'In Progress'
    - which is fine you should expect this - but then it automatically moves it from 'In Progress to 'Complete' - this is without the activity being completed. The activity is then stuck in pending. No one is marking the request as complete, the system is doing
    it - but why??????? there are no workflows set up at all for Service Requests

    Hi CCOTS-KN
    You can actually quite easily test this.
    Create an SR from a template that has 3 Manual Activities.  Once created it will progress through the 'Submitted' status to the 'In Progress' status.  The first Manual Activity should also be 'In Progress'.  Now complete the first Manual Activity,
    then wait for the second Manual Activity to go to the 'In Progress' status.  Now, put the SR 'On Hold'.  Wait for a couple of minutes - until the 2nd and 3rd Manual Activities are paused.  Now resume the SR.  What should happen is that
    the Manual Activity resume workflow should trigger before other workflows, resulting in the SR and the Manual Activities remaining 'In Progress'.  If the issue is not fixed, the completion workflow will trigger first resulting in a completed SR with paused
    activities.
    HTH
    Cheers
    Shaun

Maybe you are looking for