User Satisfaction Surveys on SCSM 2012 SSP

My company is implementing SCSM 2012, and I'd like to move our User Satisfaction Surveys off to the SSP. Conceptually since this is SharePoint we should be able to duplicate what we did with our original SharePoint 2007 surveys, but after re-reading the
available examples that reference 2007, I can't for the life of me figure out what I need to do to set this up on the SSP instead.
I'd like detailed instructions on doing this if anyone has them available, or can point me in the right direction at least if they've done the same.

I'm at the same stage as Marcel, my survey works, the incidentID and Analyst fields are hidden, my email notification link contains the Trouble Ticket ID and assigned to persons username:
http://SharepointSurveySite/Lists/IT Satisfactionary Survey/overview.aspx?IncidentID=IR142&Analyst=Test User
But when I review a response to the survey, IncidentID and Analyst is undefined.
I've tried inserting the Java code where Pablo suggest above and I tried inserting it where this blog suggests, doesnt seem to make any difference at all.
http://blogs.technet.com/b/carlospantoja/archive/2012/08/09/incident-resolution-satisfaction-surveys-on-sharepoint-2010.aspx
I have not editted the script, I gather I am supposed to "uncomment out" the setLookupFromFieldName and replace the field display name and query string name, but with what?
setInputValueFromFieldName("IncidentID", vals["IncidentID"],
true);
setInputValueFromFieldName("Analyst", vals["Analyst"],
true);
//setLookupFromFieldName("<<FIELD DISPLAY NAME>>", vals["<<QUERYSTRING VARIABLE NAME>>"]);
EDIT: I am using SCSM 2012 SP1 and SharePoint 2010 Foundation, editting the aspx with SharePoint Designer 2010, Servers 2008 R2 SP1 and Clients Win 7 64bit SP1.

Similar Messages

  • SCSM 2012 SSP Permission for End users

    Hello Experts,
    I have an issues with SSP - SCSM 2012 SP1.
    As an admin user, I can see theOfferings, see the pending requests, can see the requests I have submitted, Approve them etc. But when I am an end user, browsing from my laptop, I see a blank Home page. I dont see the Service offerings in the
    homepage..even I dont see the Need Help? text. What is the issue? FYI : Silver light is already installed on my laptop.
    Interestingly, I see the Need Help? text with the same end user credential when I am opening the browser inside the server wher SSP is installed.
    But, in both the cases, whether I browse in the server or from my laptop, I dont see the service offerings anywhere when i am an end user. I followed the below article..but no success.. :(
    http://systemcentertech.com/2012/06/28/scsm-2012-portal-service-catalog-empty-for-end-users/
    Please help...
    Thanks!
    Thanks

    Hi,
    Did you add the Service Offerings and Request Offerings to the Catalog Group? Here is another good blog on this you can reference:
    http://www.concurrency.com/blog/scsmportalpermisions/
    My Blog | www.buchatech.com | www.systemcenterportal.com
    If you found this post helpful, please give it a "Helpful" vote. If it answered your question, remember to mark it as an "Answer". This posting is provided "AS IS" with no warranties and confers no rights! Always test ANY suggestion
    in a test environment before implementing!

  • SCSM 2012 SSP Server Error 'ContentHost' Application

    I've deployed SCSM 2012 and have the SSP up and running however whenever you try to access a Knowledge Article I get the following error:
    The remote server returned an error: (502) Bad Gateway.
    Description:
    An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details:
    System.Net.WebException: The remote server returned an error: (502) Bad Gateway.
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location
    of the exception can be identified using the exception stack trace below.
    Stack Trace:
    [WebException: The remote server returned an error: (502) Bad Gateway.]
       System.Net.HttpWebRequest.EndGetRequestStream(IAsyncResult asyncResult, TransportContext& context) +3236201
       System.ServiceModel.Channels.GetOutputStreamAsyncResult.CompleteGetRequestStream(IAsyncResult result) +91
    [EndpointNotFoundException: There was no endpoint listening at https://SERVERNAME:444/ServiceHost/Services/DataAccessService.svc
    that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details.]
       System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg) +4729427
       System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type) +1725
       Microsoft.EnterpriseManagement.Presentation.DataAccess.Proxy.ServiceReference.IDataAccessService.EndExecute(IAsyncResult
    result) +0
       Microsoft.EnterpriseManagement.Presentation.DataAccess.Proxy.ServiceReference.DataAccessServiceClient.EndExecute(IAsyncResult
    result) +323
       Microsoft.EnterpriseManagement.Presentation.DataAccess.ProxyDataGateway.ExecuteScalar(DataCommandScalar`1 command)
    +654
    [DataAccessException: There was no endpoint listening at https://SERVERNAME:444/ServiceHost/Services/DataAccessService.svc that
    could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details.]
       Microsoft.EnterpriseManagement.ServiceManager.Portal.ContentHost.KnowledgeArticleHandler.GetEndUserContent(HttpContext
    context) +1291
       Microsoft.EnterpriseManagement.ServiceManager.Portal.ContentHost.KnowledgeArticleHandler.ProcessRequest(HttpContext
    context) +287
       System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +625
       System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +270
    We've tried re-installing the SSP and SharePoint and configured different ports however the error did not improve.  It does not matter whether you try to access the SSP from a client or the server the result is the same.  This problem
    only seems to exist when clicking on "Help Articles", searching for a KA, and then clicking the actual KA link.
    Has anyone else run into this or might know of a solution?
    Thank you.

    These type of errors usually indicate that the web services are not bound to the proper protocols. Hopefully this will help you.
    Make copies of the web.config files before editing!!!!
    Take look at the Custom Bindings in the web.config file for the contenthost virtual directory. Make sure that both DefaultHttpBinding and DefaultHttpsBinding are present. See below.
    <binding name="DefaultHttpBinding">
         <binaryMessageEncoding />
         <httpTransport maxReceivedMessageSize="2147483647" maxBufferSize="2147483647" />
        </binding>
    <binding name="DefaultHttpsBinding">
         <binaryMessageEncoding />
         <httpsTransport maxReceivedMessageSize="2147483647" maxBufferSize="2147483647" />
        </binding>
    Also look at the endpoint address mappings to make sure that both are there.
    <endpoint address="ServiceHost/Services/DataAccessService.svc" binding="customBinding" bindingConfiguration="DefaultHttpBinding" ........
    <endpoint address="ServiceHost/Services/DataAccessService.svc" binding="customBinding" bindingConfiguration="DefaultHttpsBinding" ................
    Next, look at the ServiceHost virtual director web.config file: Make sure that everything is using HTTPS bindings. See below:
    Look at ServiceBehavior Section:
    Make sure that HTTPSGetEnabled=true is set.
    In the Services Section:
    Make sure that endpoint bindingconfiguration=DefaultHttpsBinding is set.
    In  the Bindings > CustomBinding Section:
    Make sure that the Binding Name is DefaultHttpsBinding
    Save the files and reset IIS, see what you get now.
    Rick
    Rick Short Senior Technical Architect

  • Error: "Cannot connect to the Service Manager portal WCF service on SSP" SCSM 2012

    I have the SSP installed on a Sharepoint 2010 server.  The web portal is installed on the SCSM 2012 management server.  When opening the SMPortal I get an error message at the bottom
    "Cannot connect to the Service Manager portal WCF service.  Please contact your helpdesk or UT administrator for further help."
    I have manually modified the web.config on the portal for SSL and the Application Settings in Sharepoint IIS per the guidance of others.  I'm able to open the service in a browser.  Assistance is greatly appreciated.

    Http and https is bound on both the content server and the portal. That didn't work. Same error message:
    Cannot connect to the Service Manager portal WCF service. Please contact your helpdesk or IT administrator for further help.
    Here's the IIS log for the content server
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/ServiceCatalogSilverlightModule.xap - 443 - 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 401 2 5 2078
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/ServiceCatalogSilverlightModule.xap - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 140
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/Instrumentation.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 46
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/BaseSilverlightModule.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 31
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/AdvancedResources.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 15
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/DataAccess.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 31
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/Core.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 46
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/BasicResources.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 46
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/BuildConstants.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 15
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/CustomControls.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 31
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/WizardResources.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 46
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/System.ComponentModel.DataAnnotations.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 15
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/ToolkitResources.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 46
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/System.Windows.Controls.Data.Input.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 31
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/System.Windows.Controls.Navigation.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 31
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/System.ComponentModel.Composition.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 62
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/System.Windows.Controls.Input.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 31
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/System.Windows.Controls.Data.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 140
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/System.Windows.Controls.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 218
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/en/Settings.xml - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 404 0 2 15
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/System.Windows.Controls.Toolkit.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 218
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/System.Xml.Serialization.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 234
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/System.Windows.Data.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 234
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/System.Xml.Linq.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 250
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/en/SilverlightModule_StringResources.resx.xml - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 234
    2012-01-10 21:10:01 X.X.X.X GET /ContentHost/ClientBin/Settings.xml - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 203
    2012-01-10 21:10:20 X.X.X.X POST /ServiceHost/Services/DataAccessService.svc - 443 - 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 401 2 5 17598
    2012-01-10 21:10:28 X.X.X.X POST /ServiceHost/Services/DataAccessService.svc - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 404 0 0 8580
    2012-01-10 21:11:01 X.X.X.X GET /ContentHost/ClientBin/en/Settings.xml - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 404 0 2 0
    2012-01-10 21:11:01 X.X.X.X POST /ServiceHost/Services/DataAccessService.svc - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 404 0 0 203
    2012-01-10 21:11:06 X.X.X.X GET /ContentHost/ClientBin/RequestOfferingSilverlightModule.xap - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 171
    2012-01-10 21:11:06 X.X.X.X GET /ContentHost/ClientBin/FormControls.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 125
    2012-01-10 21:11:06 X.X.X.X GET /ContentHost/ClientBin/en/Settings.xml - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 404 0 2 0
    2012-01-10 21:11:06 X.X.X.X GET /ContentHost/ClientBin/Microsoft.Practices.ServiceLocation.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 234
    2012-01-10 21:11:06 X.X.X.X GET /ContentHost/ClientBin/Microsoft.Practices.Unity.Silverlight.zip - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 304 0 0 234
    2012-01-10 21:11:08 X.X.X.X POST /ServiceHost/Services/DataAccessService.svc - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 404 0 0 203
    2012-01-10 21:12:36 X.X.X.X GET /ContentHost/ClientBin/en/Settings.xml - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 404 0 2 0
    2012-01-10 21:12:37 X.X.X.X POST /ServiceHost/Services/DataAccessService.svc - 443 domain\user 2002:4acb:cb4f:8000:0:5efe:X.X.X.X Mozilla/5.0+(compatible;+MSIE+9.0;+Windows+NT+6.1;+WOW64;+Trident/5.0) 404 0 0 203

  • 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. 

  • 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=&#39;SMIncident!System.WorkItem.Incident.ProjectionType&#39;]$'. Cannot resolve ManagementElementReference.
    : No matches were found for input string '$MPElement[Name=&#39;SMIncident!System.WorkItem.Incident.ProjectionType&#39;]$'. 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

  • Detect End User Computer for Incident Request -SCSM 2012 Self Service Portal

    Hi all,
    We want to automatically select user computer name when user submitting a incident request through SCSM 2012 Self Service Portal.  I would like to know is there are OOB feature or workaround without code. 
    Our client does not want to select computer from the list. :) Hence they need Self Service Portal to detect the user computer 
    Thanks in Advance

    Follow the step
    1. Create Request Offering and select "Query Results" for Computer
    2. Select Class : Computer (Advanced)
    3. Configure Criteria Primary User Set Token : Portal User Name
    4. Choose Display Column example: NetBIOS Computer Name
    5. Go to portal, once the form loaded it will auto populate the Primary User Computer
    Hope this help !

  • "back submit cancel " not show in ssp scsm 2012 sp1

    hello  
    which  may be the reason  that my SSP in SCSM 2012 sp1 does
    not show the buttons to submit my request to serve
    rmanager?
    <- Back   Submit  ->
      Cancel  
      button
    are not displayed ... can someone help me?
    Thanks 

    Resolved :  Stamped   "create request button"   in  sharepoint  web part 
    A glaring oversight on my part
    Sorry. 

  • Reinstalling SCSM 2012 SP1 -- installation fails on Finalize step "while executing a custom action:RollbackCleanup" -- absolutely stumped!

    I uninstalled a previous installation of SCSM 2012 in our lab environment because the person who installed it is didn't give anyone else permissions and they weren't available to make the change.  Since then, I've tried to install SCSM 2012 multiple
    times and it fails every time during the Finalize step with the error shown in the picture below.
    Things I've tried and double checked:
    I am running the install with a domain admin account
    I'm specifying a domain user service account during install which is local administrator on the machine
    I rebuilt the performance counters
    I'm running SQL 2k8 R2 SP2
    .Net 3.5.1 is installed
    I see the following message in the System Event Log during setup:
    Event 7036 - The System Center Data Access Service service entered the running state.
    Event 7031 - The System Center Data Access Service service terminated unexpectedly. 
    It has done this 1 time(s).  The following corrective action will be taken in 60000 milliseconds: Restart the service.
    It appears as though this happens 18 times before the service is no longer restarted and is left terminated.
    Any thoughts or help on how to get this to work would be greatly appreciated!  Log excerpts are below as well as a link to the full log file at the end.
    Chris
    Errors in the log that make me go "hmm…" 
    I changed my domain and username in the logs to "DOMAIN" and "user" respectively. 
    MSI (s) (74!94) [10:29:06:718]: Note: 1: 2711 2: MOMServer
    Action start 10:29:06: _SetHealthServiceConfig.80B659D9_F758_4E7D_B4FA_E53FC737DCC9.
    GetMsiFeatureState: Failed to get feature state. Error Code: 0x80070646. MOMServer
    MSI (s) (74!94) [10:29:06:719]: Note: 1: 2711 2: MOMGateway
    SetHealthServiceConfig: Failed to get Feature State.. Error Code: 0x80070646. MOMServer
    GetMsiFeatureState: Failed to get feature state. Error Code: 0x80070646. MOMGateway
    MSI (s) (74:04) [10:49:58:011]: Executing op: ActionStart(Name=_ExecuteSqlScripts,Description=Configuring Database,Template=[1])
    The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2769. The arguments are: _MPProcessorDeferred, 9923,
    Calling custom action CAManaged!Microsoft.MOMv3.Setup.MOMv3ManagedCAs.RegisterSdkSCP
    RegisterSdkSCP: Old serviceConnectionPoint found
    RegisterSdkSCP: Deleting existing serviceConnectionPoint
    RegisterSdkSCP: Warning: Dont have access to delete existing serviceConnectionPoint
    RegisterSdkSCP: Creating New serviceConnectionPoint
    RegisterSdkSCP: Adding ACL for current user: DOMAIN\account
    RegisterSdkSCP: Adding ACL for SM Admini: DOMAIN\SCSM Admins
    RegisterSdkSCP: Error: The object already exists.
    Calling custom action CAManaged!Microsoft.MOMv3.Setup.MOMv3ManagedCAs.WaitForSDKServiceStart
    WaitForSDKServiceStart:Entering
    WaitForSDKServiceStart:Sleeping for SDK to start 0 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 10 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 20 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 30 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 40 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 50 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 60 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 70 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 80 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 90 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 100 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 110 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 120 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 130 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 140 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 150 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 160 seconds
    WaitForSDKServiceStart:Sleeping for SDK to start 170 seconds
    WaitForSDKServiceStart: SDK Service connect error, after 3 mins, fail this function
    MSI (s) (74:40) [10:56:20:397]: NOTE: custom action _WaitForSDKServiceStart unexpectedly closed the hInstall handle (type MSIHANDLE) provided to it. The custom action should be fixed to not close that
    handle.
    CustomAction _WaitForSDKServiceStart returned actual error code 1603 (note this may not be 100% accurate if translation happened inside sandbox)
    MSI (s) (74:04) [10:56:40:799]: Executing op: CustomActionRollback(Action=_RollBack_UninstallHealthServicePerfCountersForUpgrade.80B659D9_F758_4E7D_B4FA_E53FC737DCC9,ActionType=3393,Source=BinaryData,Target=InstallHSPerfCounters,CustomActionData=C:\Program
    Files\Microsoft System Center 2012\Service Manager\)
    MSI (s) (74:38) [10:56:40:801]: Invoking remote custom action. DLL: C:\Windows\Installer\MSI62BF.tmp, Entrypoint: InstallHSPerfCounters
    InstallHSPerfCounters: Custom Action Data. C:\Program Files\Microsoft System Center 2012\Service Manager\
    InstallHSPerfCounters: Installing agent perf counters.
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center 2012\Service Manager\HealthServiceCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. HealthService
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center 2012\Service Manager\MOMConnectorCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. MOMConnector
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center 2012\Service Manager\HealthServiceCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. HealthService
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center 2012\Service Manager\MOMConnectorCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. MOMConnector
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center 2012\Service Manager\HealthServiceCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. HealthService
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center 2012\Service Manager\MOMConnectorCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. MOMConnector
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center 2012\Service Manager\HealthServiceCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. HealthService
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center 2012\Service Manager\MOMConnectorCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. MOMConnector
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center 2012\Service Manager\HealthServiceCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. HealthService
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center 2012\Service Manager\MOMConnectorCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. MOMConnector
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center 2012\Service Manager\HealthServiceCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. HealthService
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center 2012\Service Manager\MOMConnectorCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. MOMConnector
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallHSPerfCounters: Failed to install agent perf counters. Error Code: 0x80070057.
    MSI (s) (74:04) [10:57:10:844]: I/O on thread 2752 could not be cancelled. Error: 1168
    MSI (s) (74:04) [10:57:10:844]: I/O on thread 4796 could not be cancelled. Error: 1168
    MSI (s) (74:04) [10:57:10:844]: I/O on thread 4928 could not be cancelled. Error: 1168
    MSI (s) (74:04) [10:57:10:845]: I/O on thread 4612 could not be cancelled. Error: 1168
    MSI (s) (74:04) [10:57:10:845]: I/O on thread 884 could not be cancelled. Error: 1168
    MSI (s) (74:04) [10:57:10:845]: I/O on thread 2600 could not be cancelled. Error: 1168
    MSI (s) (74:04) [10:57:10:845]: I/O on thread 1884 could not be cancelled. Error: 1168
    MSI (s) (74:04) [10:57:10:845]: I/O on thread 4872 could not be cancelled. Error: 1168
    MSI (s) (74:04) [10:57:10:845]: I/O on thread 3084 could not be cancelled. Error: 1168
    MSI (s) (74:04) [10:57:10:845]: I/O on thread 4920 could not be cancelled. Error: 1168
    MSI (s) (74!E0) [10:57:10:846]: Product: Microsoft System Center 2012 - Service Manager -- The installer has encountered an unexpected error installing this package. This may indicate a problem with
    this package. The error code is 25211. The arguments are: -2147024809, The parameter is incorrect.,
    The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 25211. The arguments are: -2147024809, The parameter is incorrect.,
    CustomAction _RollBack_UninstallHealthServicePerfCountersForUpgrade.80B659D9_F758_4E7D_B4FA_E53FC737DCC9 returned actual error code 1603 but will be translated to success due to continue marking
    MSI (s) (74:04) [10:57:17:154]: Note: 1: 1708
    MSI (s) (74:04) [10:57:17:154]: Product: Microsoft System Center 2012 - Service Manager -- Installation failed.
    MSI (s) (74:04) [10:57:17:155]: Windows Installer installed the product. Product Name: Microsoft System Center 2012 - Service Manager. Product Version: 7.5.2905.0. Product Language: 0. Manufacturer:
    Microsoft Corporation. Installation success or error status: 1603.
    Full log file:
    https://skydrive.live.com/redir?resid=F723C571E9E6D51F!1414&authkey=!ACisfvqIpGO_i7A

    Hello Christopher,
    I have recently worked in a case that had mostly the same errors:
    InstallHSPerfCounters: Installing agent perf counters.
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center\Service Manager\HealthServiceCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. HealthService
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center\Service Manager\MOMConnectorCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. MOMConnector
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center\Service Manager\HealthServiceCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. HealthService
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center\Service Manager\MOMConnectorCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. MOMConnector
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center\Service Manager\HealthServiceCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. HealthService
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center\Service Manager\MOMConnectorCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. MOMConnector
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center\Service Manager\HealthServiceCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. HealthService
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center\Service Manager\MOMConnectorCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. MOMConnector
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center\Service Manager\HealthServiceCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. HealthService
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center\Service Manager\MOMConnectorCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. MOMConnector
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center\Service Manager\HealthServiceCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. HealthService
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallCounters: LoadPerfCounterTextStrings() failed . Error Code: 0x80070057. momv3 "C:\Program Files\Microsoft System Center\Service Manager\MOMConnectorCounters.ini"
    InstallPerfCountersHelper: pcCounterInstaller->InstallCounters() for the default counters failed. Error Code: 0x80070057. MOMConnector
    InstallPerfCountersLib: InstallHealthServicePerfCounters() failed . Error Code: 0x80070057.
    InstallPerfCountersLib: Retry Count : .
    InstallHSPerfCounters: Failed to install agent perf counters. Error Code: 0x80070057.
    MSI (s) (A8:D4) [10:29:51:586]: I/O on thread 8152 could not be cancelled. Error: 1168
    MSI (s) (A8:D4) [10:29:51:586]: I/O on thread 9580 could not be cancelled. Error: 1168
    MSI (s) (A8:D4) [10:29:51:586]: I/O on thread 6008 could not be cancelled. Error: 1168
    MSI (s) (A8:D4) [10:29:51:586]: I/O on thread 2112 could not be cancelled. Error: 1168
    MSI (s) (A8:D4) [10:29:51:586]: I/O on thread 8252 could not be cancelled. Error: 1168
    MSI (s) (A8:D4) [10:29:51:586]: I/O on thread 12504 could not be cancelled. Error: 1168
    MSI (s) (A8:D4) [10:29:51:586]: I/O on thread 9548 could not be cancelled. Error: 1168
    MSI (s) (A8:D4) [10:29:51:586]: I/O on thread 11464 could not be cancelled. Error: 1168
    MSI (s) (A8:D4) [10:29:51:587]: I/O on thread 10616 could not be cancelled. Error: 1168
    MSI (s) (A8:D4) [10:29:51:587]: I/O on thread 8120 could not be cancelled. Error: 1168
    MSI (s) (A8:D4) [10:29:51:587]: I/O on thread 2424 could not be cancelled. Error: 1168
    MSI (s) (A8!D4) [10:29:51:587]: Product: Microsoft System Center 2012 R2 Service Manager -- The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 25211. The arguments are:
    -2147024809, The parameter is incorrect.,
    The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 25211. The arguments are: -2147024809, The parameter is incorrect.,
    CustomAction _RollBack_UninstallHealthServicePerfCountersForUpgrade.80B659D9_F758_4E7D_B4FA_E53FC737DCC9 returned actual error code 1603 but will be translated to success due to continue marking
    MSI (s) (A8:3C) [10:29:51:599]: Executing op: ActionStart(Name=_StopNamedServices_HealthService.80B659D9_F758_4E7D_B4FA_E53FC737DCC9,Description=Stopping Health services,)
    MSI (s) (A8:3C) [10:29:51:603]: Executing op: ActionStart(Name=StopServices,Description=Stopping services,Template=[1])
    MSI (s) (A8:3C) [10:29:51:605]: Executing op: ServiceControl(,Name=W3SVC,Action=1,,)
    MSI (s) (A8:3C) [10:29:52:621]: Executing op: ActionStart(Name=ProcessComponents,Description=Updating component registration,).
    - I was able to resolve it using the command  line LOTCTR /R
    - And restarting the IIS service using the command line tool IISRESET
    - After this command was successfully applied I have tried to install the Service Manager Portal without any errors.
    http://technet.microsoft.com/en-us/library/bb490926.aspx
    http://technet.microsoft.com/en-us/library/hh875560.aspx
    http://support.microsoft.com/kb/300956
    https://blogs.technet.com/b/yongrhee/archive/2009/10/06/how-to-rebuild-performance-counters-on-windows-vista-server2008-7-server2008r2.aspx
    Thank you very much
    Renato Pacheco

  • Trying to Perform an install of SCSM 2012 SP1 - SQL Analysis Services Not Installed

    I'm performing a clean install of System Center Service Manager 2012 on a Windows 2012 server.   The prerequisite checker told me the Analysis Objects were not installed.   I clicked the link and downloaded the SQL Server 2008 R2 Analysis
    Management Objects.   I restarted the install and it still says it's not installed.  I also tried installing the 2012 version of the objects and still no luck.  
    I also tried installing both the x86 and x64 versions of these tools.
    I have also tried the same install on a Windows 2008 R2 server and had the same error.  I'm convinced this is a bug in the setup.
    Has anyone else seen this?  Is it a known issue?

    Try to check the log file SCSMSetupWizardxy.log under C:\Users\<username>\AppData\Local\Temp
    perhaps it could not load Microsoft.AnalysisServices.dll assembly.
    12:23:55:**************************************************
    12:23:55:CheckPrerequisites: Checking Microsoft SQL Server Analysis Management Objects prereq.
    12:23:55:Entered RequiredAMO
    12:24:08:Trying alternate method of detection using Assembly.Load
    12:24:08:Error occured while loading Microsoft.AnalysisServices.dll: Could not load file or assembly 'Microsoft.AnalysisServices, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' or one of its dependencies. The system cannot find the file specified.
    12:24:08:CheckPrerequisites: Logic Type:and AMO-err: 2
    12:24:08:
    12:24:08:CheckPrerequisites: Microsoft SQL Server Analysis Management Objects: Failed
    12:24:08:
    12:24:08:**************************************************
    can you confirm if that assembly exists in the Assembly folder.
    on a side note: SCSM 2012 SP1 supports 2008 R2 SP1 or above, and double check that the account you are using to install the SM is a local admin.
     

  • SCSM 2012 UR3 - "The Full adapter threw an exception" error when viewing "Deleted Items" view

    Has anyone expereinced the "The Full adapter threw an exception" eror in the SCSM 2012 console? 
    We get the error in both our dev and production environments when trying to view the "Deleted Items" view in the console (even after using powershell to remove all deleted iterms).  As just noted, interestingly enough we can view, delete, and restore
    deleted items using the corresponding Powershell commands.  It should be noted that neither of our two SCSM 2012 environments has a registered data warehouse server.  Below is a screen shot of the error as well as the associated error text and event
    log errors.
    Any help would be greatly apprecaited!
    Regards,
    JJ
    Console Dialog Error Test
    ============================
    Date: 10/17/2012 8:46:50 PM
    Application: Service Manager Console
    Application Version: 7.5.1561.0
    Severity: Error
    Message: An error occurred while loading the items.
    Microsoft.EnterpriseManagement.UI.ViewFramework.AdvancedListSupportException: The Full adapter threw an exception. See the FullUpdate property to see the exception.
       at Microsoft.EnterpriseManagement.UI.ViewFramework.AdvancedListSupportAdapter.DoAction(DataQueryBase query, IList`1 dataSources, IDictionary`2 parameters, IList`1 inputs, String outputCollectionName)
       at Microsoft.EnterpriseManagement.UI.DataModel.QueryQueue.StartExecuteQuery(Object sender, ConsoleJobEventArgs e)
       at Microsoft.EnterpriseManagement.ServiceManager.UI.Console.ConsoleJobExceptionHandler.ExecuteJob(IComponent component, EventHandler`1 job, Object sender, ConsoleJobEventArgs args)
    Associated Event Log Errors
    ============================
    Log Name:      Application
    Source:        MSSQLSERVER
    Date:          10/17/2012 8:46:49 PM
    Event ID:      8623
    Task Category: Server
    Level:         Error
    Keywords:      Classic
    User:          SYSTEM
    Computer:      jhqsrv08.jhq.net
    Description:
    The query processor ran out of internal resources and could not produce a query plan. This is a rare event and only expected for extremely complex queries or queries that reference a very large number of tables or partitions. Please simplify the query. If you
    believe you have received this message in error, contact Customer Support Services for more information.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="MSSQLSERVER" />
        <EventID Qualifiers="49152">8623</EventID>
        <Level>2</Level>
        <Task>2</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2012-10-18T00:46:49.000000000Z" />
        <EventRecordID>339617</EventRecordID>
        <Channel>Application</Channel>
        <Computer>jhqsrv08.jhq.net</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <EventData>
        <Binary>AF21000010000000090000004A00480051005300520056003000380000000F00000053006500720076006900630065004D0061006E0061006700650072000000</Binary>
      </EventData>
    </Event>
    Log Name:      Operations Manager
    Source:        DataAccessLayer
    Date:          10/17/2012 8:46:49 PM
    Event ID:      33333
    Task Category: None
    Level:         Warning
    Keywords:      Classic
    User:          N/A
    Computer:      jhqsrv08.jhq.net
    Description:
    Data Access Layer rejected retry on SqlError:
     Request: MTV_Select_62f0be9f-ecea-e73c-f00d-3dd78a7422fc_Top -- (NonGenericDistinctFilterForAbstract=4cf77750-6688-8672-9470-036e0f4b48d6,26b2dff7-2ce9-59cf-4eb8-a6fb2d095d45,89992420-1297-0b8b-f3ca-1e53aa36f9e0,ed5ec2bf-6745-086...), (ObjectStatus_4AE3E5FE_BC03_1336_0A45_80BF58DEE57B0=47101e64-237f-12c8-e3f5-ec5a665412fb)
     Class: 16
     Number: 8623
     Message: The query processor ran out of internal resources and could not produce a query plan. This is a rare event and only expected for extremely complex queries or queries that reference a very large number of tables or partitions. Please simplify
    the query. If you believe you have received this message in error, contact Customer Support Services for more information.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="DataAccessLayer" />
        <EventID Qualifiers="32768">33333</EventID>
        <Level>3</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2012-10-18T00:46:49.000000000Z" />
        <EventRecordID>935685</EventRecordID>
        <Channel>Operations Manager</Channel>
        <Computer>jhqsrv08.jhq.net</Computer>
        <Security />
      </System>
      <EventData>
        <Data>MTV_Select_62f0be9f-ecea-e73c-f00d-3dd78a7422fc_Top -- (NonGenericDistinctFilterForAbstract=4cf77750-6688-8672-9470-036e0f4b48d6,26b2dff7-2ce9-59cf-4eb8-a6fb2d095d45,89992420-1297-0b8b-f3ca-1e53aa36f9e0,ed5ec2bf-6745-086...),
    (ObjectStatus_4AE3E5FE_BC03_1336_0A45_80BF58DEE57B0=47101e64-237f-12c8-e3f5-ec5a665412fb)</Data>
        <Data>16</Data>
        <Data>8623</Data>
        <Data>The query processor ran out of internal resources and could not produce a query plan. This is a rare event and only expected for extremely complex queries or queries that reference a very large number of tables or partitions.
    Please simplify the query. If you believe you have received this message in error, contact Customer Support Services for more information.</Data>
      </EventData>
    </Event>
    Log Name:      Operations Manager
    Source:        OpsMgr SDK Service
    Date:          10/17/2012 8:29:26 PM
    Event ID:      26319
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      jhqsrv08.jhq.net
    Description:
    An exception was thrown while processing GetManagedEntitiesByManagedEntityTypesAndCriteriaWithInstanceQueryOptions for session ID uuid:66ba50da-cdce-4d15-823c-92c41b46fe44;id=2425.
     Exception message: The creator of this fault did not specify a Reason.
     Full Exception: System.ServiceModel.FaultException`1[Microsoft.EnterpriseManagement.Common.UnknownDatabaseException]: The creator of this fault did not specify a Reason. (Fault Detail is equal to The query processor ran out of internal resources and could
    not produce a query plan. This is a rare event and only expected for extremely complex queries or queries that reference a very large number of tables or partitions. Please simplify the query. If you believe you have received this message in error, contact
    Customer Support Services for more information.).
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="OpsMgr SDK Service" />
        <EventID Qualifiers="49152">26319</EventID>
        <Level>2</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2012-10-18T00:29:26.000000000Z" />
        <EventRecordID>935679</EventRecordID>
        <Channel>Operations Manager</Channel>
        <Computer>jhqsrv08.jhq.net</Computer>
        <Security />
      </System>
      <EventData>
        <Data>GetManagedEntitiesByManagedEntityTypesAndCriteriaWithInstanceQueryOptions</Data>
        <Data>uuid:66ba50da-cdce-4d15-823c-92c41b46fe44;id=2425</Data>
        <Data>The creator of this fault did not specify a Reason.</Data>
        <Data>System.ServiceModel.FaultException`1[Microsoft.EnterpriseManagement.Common.UnknownDatabaseException]: The creator of this fault did not specify a Reason. (Fault Detail is equal to The query processor ran out of internal resources
    and could not produce a query plan. This is a rare event and only expected for extremely complex queries or queries that reference a very large number of tables or partitions. Please simplify the query. If you believe you have received this message in error,
    contact Customer Support Services for more information.).</Data>
      </EventData>
    </Event>

    I have the same problem and get following error:
    An exception was thrown while processing GetManagedEntitiesByManagedEntityTypesAndCriteriaWithInstanceQueryOptions
    I have contacted MS Support, but hey could not help
    either.
    I really
    need to fix it. Any help?

  • ERP Research Study - Use and User Satisfaction

    I am working on a research study of ERP use from an end-user perspective. I've developed a survey which address use/usefulness dimensions and also elicits feedback regarding satisfaction with the quality of the ERP and the information generated from it.
    I would greatly appreciate your help in distributing this survey to end users of ERP systems. The survey and responses are completely confidential, and there is no way to identify the participants or their organization. Participation is completely voluntary. Responses are greatly appreciated as a means to help understand relationships between ERP usage and end user satisfaction. Results from the survey will help both research and practice develop a richer understanding of ERP.
    The survey takes about 5-7 minutes to complete.
    If you would like to participate in this research, please reply and I will forward you the link.

    I assume you have read the following;
    Davenport, T. H. (1998, July-August). Putting the Enterprise into the Enterprise System. Harvard Business Review, 1-10.
    Bradley, J. (2004).Enterprise resource planning success: A management theory approach to critical success factors. Pro Quest Information and Learning Company. (UMI No. 3139266)
    DeLone, W. H., & McLean, E. R. (March 1992).  Information Systems Success: The Quest for the Dependent Variable. Information Systems Research, 3(1), 60-94.
    DeLone, W. H., & McLean, E. R. (2003). The DeLone and McLean Model of Information Systems Success: A Ten Year Update. Journal of Management Information Systems, 19(4), 9-30.
    Jiang, J., Klein, G., Carr, C. (2002). Measuring information System Service Quality: SERVQUAL from the Other Side. MIS Quarterly, 26(2), 145-166.
    Landrum, H., Prybutok, V., Zhang, X., & Peak, D. (2009). Measuring IS System Service Quality with SERVQUAL: Useru2019s perceptions of Relative importance of the five SERVPERF Dimensions. Informing Science, (12), 17-33.
    VanDyke, T., Kappelman, L., & Prybutok, V. (1997). Measuring information Systems Service Quality: Concerns on the use of the SERVQUAL Questionnaire. MIS Quarterly, 21(2), 195-208.

  • SCSM 2012 Change form issue - Scheduled start and end times default to 12:00:00

    I have a report that the Change Form in SCSM 2012 is not allowing users to set the scheduled start and end times.  The date stays correct, but the time reverts back to 12:00:00, and the user has to save to the initial form,  then re-open and
    change the times.
    I checked in the authoring tool, the time/date field is set to full date and time. (I think these are custom fields)
    I am not sure where else to look to adjust any settings as needed.
    Thanks for any assistance.
    Joshua Fuente

    Hi Joshua,
    Is this situation on all consoles or few ones? Check the time format on the user's PC. 24h or 12h could affect the DateTime control's behavior.
    Cheers,
    Marat
    Site: www.scutils.com  Twitter:
      LinkedIn:
      Facebook:

  • Making a field on the SCSM 2012 Change form a required field?

    I've got an oldie but a goodie...
    Are there any good instructions / example articles, for how to make a field mandatory?
    I understand I need to use Visual Studio to create a control. From here I need to make a DLL and bundle it in an Management Pack Bundle.  Then I have to Bind the control to the field.
    A few important pieces of information. I first opened Visual Studio 3 days ago.  I have no idea how to use VS.  I barely found where the DLL is "built".  I gave up serious coding in '93.  I not bad at PowerShell and Bash. 
    Never used VB or C#.  (Honestly, if Rob Ford's Blog didn't have screenshots I never would have figured out to use VS2010 or how to add the reference Assemblies.)
    (Now that you've stop laughing...) ;-)
    Do I need a new control for each field or can I re-use the control for other fields?
    Why wasn't a Standard Control added to SCSM2012 to require an entry in a field?  OOTB, Incidents have mandatory fields, so can I re-use that control in other forms.  All we need is to require the user to include certain
    fields before submitting a Change Request.
    Thank you for any assistance or answers you have.
    Ray Watters, Chicago

    Do I need a new control for each field or can I re-use the control for other fields?
    Once you have a single custom control loaded onto your form it can do everything that you require. Not just validation rules, but anything you need it to do. For example, I have done form customisations purely via a custom control.
    Why wasn't a Standard Control added to SCSM2012 to require an entry in a field? 
    The standard forms are WPF forms and their validation rules are hard-coded in the XAML and C# that make up the forms.
    To find which DatePicker you need, look at it in the Authoring Tool to see its Name or use Snoop from here:
    http://snoopwpf.codeplex.com/
    You can hover over the console and see the control names, although, sometimes, it is a bit unstable with the SCSM console.
    Rob Ford scsmnz.net
    Cireson www.cireson.com
    For a free SCSM 2012 Notify Analyst app click
    here

  • SCSM 2012 - Problems running script in custom workflow

    Hi all,
    I'm trying to create a custom workflow in the Authoring Tool that will send an email when a ticket in certain queues is unassigned, but I only want this to run during business hours. I've created the PowerShell script, and it runs great on its own.
    However, whenever I try to add any kind of scripting event to a custom workflow, the workflow fails:
    Microsoft.EnterpriseManagement.Common.InconsistentDataException: The requested objects had an unknown management pack. ---> Microsoft.EnterpriseManagement.Common.InconsistentDataException: The call produced inconsistent results. The data on the client
    does not match the data returned from the server. The most likely cause is that client-side cache is out of sync with server data. ---> Microsoft.EnterpriseManagement.Common.ObjectNotFoundException: An object of class ManagementPack with ID %GUID% was not
    found...
    If I create and import a management pack with an empty workflow, the workflow succeeds. If I use the "Add AD DS User to Group", the workflow succeeds. But as soon as I add a scripting event, the workflow fails.
    For testing, I added a PowerShell event with this code: 
    $a=1
    I also added a Command Script event with this code and got the same error as above: ping SomeServer
    I even tried a VBScript, but that caused the workflow to not run at all:
    dim someVariable
    someVariable = "some value"
    I then disabled the VBScript activity and the workflow runs successfully.
    I'm running SCSM 2012 SP1 with UR4. I am copying the .dll file into the SCSM installation directory (which is not in the default location). The GUID referenced in the error code is the GUID for my custom MP.
    This is my first time creating a custom workflow in the Authoring Tool. Can you tell me what I'm missing? Please let me know if you need any more information
    Thanks!
    Marnie

    Thanks, Anders. I had seen that issue in my searches on this problem. I had tried both the manual fix suggested in that post as well as upgrading to UR4 (so I'm on on SP1 UR4). Neither approach made any difference.
    Am I supposed to do anything with the .cs, .xoml, and .xomlx files that also get generated? I noticed that if I move ALL the associated files into the install directory (not just the .dll file), then import the MP, I get a different error. Instead of the
    MP being missing, the error is now:
    System.NullReferenceException: Object reference not set to an instance of an object.
       at Microsoft.ServiceManager.WorkflowAuthoring.ActivityLibrary.WindowsPowerShellScript.Activity_Closed(Object sender, ActivityExecutionStatusChangedEventArgs e)
       at System.Workflow.ComponentModel.ActivityExecutorDelegateInfo`1.ActivityExecutorDelegateOperation.Run(IWorkflowCoreRuntime workflowCoreRuntime)
       at System.Workflow.Runtime.Scheduler.Run()
    This makes it seem like I do need to move ALL the files to the install directory, but maybe now the workflow just doesn't like my code?
    Thanks!
    Marnie

Maybe you are looking for

  • How do I get the most out of my Macbook pro with retina display?

    Hi, I am new to apple had an Iphone and loved it and was drawn in by the advertisment for the new macbook pro with retina display and decided to get myself one. I have pretty much taught myself everything so far and I think I have a basic enough know

  • My iPad 32 gb Verizon is getting hot in the bach

    Hi my new iPad is getting really hot in the back in the opposite side of the speakers and in the same side but in the front any one else having this issue on apple forums there is a lot of people having this issue .

  • File Content Conversion - Error in keyfield Value

    Hello experts, I am doing file content conversion for a file to file scenario. The input file is a csv file which is converted to xml using the file content conversion. The key field of input file is used for implementing conversion. While testing th

  • Exteranl instructor details in Training & Event mgmt.

    hello groups, where can we store the profile of Instructor in training and event management. In TC - OOER we can enter the instructor's name and address details only. Pls let me know, it is urgent thanks in advance

  • CR063837 AssertionError "fixed" in WLS 7 SP3 reappearing in SP4?

    Hi: I'm doing some testing with petstore and I'm porting it to Oracle. The tables are initially empty and I'm hoping Petstore will notice that and populate them. Instead, I am getting an error that looks exactly like one that was supposedly fixed in