JSPM: NWDI-controlled SC in REVISE due to SC Version Error

Hello,
We are still very new to working with the J2EE Engine and NWDI, so naturally we are finding our way through our mistakes.  We are in the process of implementing Enterprise Portal for ESS/MSS, and we have made some custom modifications to both of these components.  We are using NWDI to control the modifications, and after some initial mis-steps, we think we now have a reasonable working landscape.  However, we are now unable to apply support packages for ESS to our Test system.
We successfully applied sps8 for ESS/MSS/PCUI_GP/ASR and sps11 for NetWeaver to our Development system, using NWDI and NWDS to re-apply our modifications to ESS and MSS.  The combined SP's and modifications went into DEV just fine, they imported into the CONS queue (no runtime system) fine, they assembled successfully, and now I am trying to import them into TEST using JSPM, but here is where the problem lies.
In the "Check Queue" phase of JSPM, the ESS component is in status REVISE, and the detail message says "New component sap.com/SAP_ESS with version 600.8.0 and provider JD1 does not cover existing component with version 600.7.2 and provider JD1."  JD1 is our NWDI system/domain.  I think the basic problem is that for whatever reason, our TEST system has ESS in version 600.7.2, whereas in DEV it was in 600.7.0 (prior to applying sp8), and I have no idea why there is a difference.
I have tried the import as a support package stack and as a collection of single support packages, but I get the same result.
The MSS component has no such issue.  The status in Check Queue indicates that it has admitted our modification from the CMS track for deployment.  The assembled directory contains files for MSS, ESS, PCUI_GP, and ASR, as expected.
The only thing I can think of is that prior to applying this sp stack, we had a misconfigured NWDI landscape (the transport directory was on the portal DEV server instead of the NWDI server, transports were variously held on the portal DEV server or the NWDI server depending on whether they were controlled by CMS, etc -- all of this is now fixed, but perhaps the damage is done), and the previous sp stack went into the systems prior to any modifications being done, it went in without NWDI control, and then modifications were transported into TEST separately.  However, supposedly the DEV and TEST systems had the same versions prior to this sp stack being applied.
I know the documentation says that the component in the transdir must be replaced to fix the REVISE status, but we have nothing to replace it with.  It IS the correct version.  What I really need is a way to tell JSPM to ignore the version error and force the new (modified) component in, without losing the version history and track control in the CMS.
Any advice on how to proceed will be much appreciated.  The NWDI and Portal are both NW04s release, and the NWDI is already at sps11.
Best regards,
Matt

We resolved this problem by undeploying all ESS components via SDM, then applying all the support packages to still-deployed components with JSPM, and then redeploying the new/modified ESS package via JSPM with the option of "New Software Components."  I still don't know how the funny 7.2 sp.patch version number got there in the first place.
--Matt

Similar Messages

  • Everytime I  try and sign into my iCloud account it tells me I can't log in due to a server error, but there is nothing wrong with my server . It also wont allow me to view any of my Photos or Documents that i have backed up.

    Everytime I  try and sign into my iCloud account it tells me I can't log in due to a server error, but there is nothing wrong with my server . It also wont allow me to view any of my Photos or Documents that I have backed up. Please help

    Hi,
    Are you running any Anti-virus software or do you have your firewall turned on? If so, disable them and try again. If that doesn't work, delete the iCloud account and then sign it back on again.
    Make sure you are running the most current version of the iCloud Control Panel:
    http://support.apple.com/kb/dl1455
    Cheers,
    GB

  • The server was unable to process the request due to an internal error.

             
    Properties set in my project are below
    namespace EmployeeService
            public class Employee
                private int _Id;
                private string _Name;
                private string _Gender;
                private DateTime _DateofBirth;
                public int Id
                    get { return _Id; }
                    set { _Id = value; }
                public string Name
                    set { _Name = value; }
                    get { return _Name; }
                public string Gender
                    set { _Gender = value; }
                    get { return _Gender; }
                public DateTime DateofBirth
                    set { _DateofBirth = value; }
                    get { return _DateofBirth; }
    This is the service i have developed in my project 
    namespace EmployeeService
        // NOTE: You can use the "Rename" command on the "Refactor" menu to change the class name "Service1" in both code and config file together.
        public class EmployeeService : IEmployeeService
            public Employee GetEmployee(int Id)
                Employee objemp = new Employee();
                string cs = ConfigurationManager.ConnectionStrings["DBCS"].ConnectionString;
                using (SqlConnection con = new SqlConnection(cs))
                    SqlCommand cmd = new SqlCommand("spGettblEmployeewcf", con);
                    cmd.CommandType = CommandType.StoredProcedure;
                    SqlParameter Idparameter = new SqlParameter();
                    Idparameter.ParameterName = "@Id";
                    Idparameter.Value = Id;
                    cmd.Parameters.Add(Idparameter);
                    con.Open();
                    SqlDataReader dr = cmd.ExecuteReader();
                    while (dr.Read())
                        objemp.Id = Convert.ToInt32(dr["Id"]);
                        objemp.Name = dr["Name"].ToString();
                        objemp.Gender = dr["Gender"].ToString();
                        objemp.DateofBirth = Convert.ToDateTime(dr["DateofBirth"]);
                return objemp;
            public void SaveEmployee(Employee objemp)
                string cs = ConfigurationManager.ConnectionStrings["DBCS"].ConnectionString;
                using (SqlConnection con = new SqlConnection(cs))
                    SqlCommand cmd = new SqlCommand("spInsertEmployeewcf", con);
                    cmd.CommandType = CommandType.StoredProcedure;
                    SqlParameter ParameterId = new SqlParameter()
                        Value = objemp.Id,
                        ParameterName = "@Id"
                    cmd.Parameters.Add(ParameterId);
                    SqlParameter ParameterName = new SqlParameter()
                        Value = objemp.Name,
                        ParameterName = "@Name"
                    cmd.Parameters.Add(ParameterName);
                    SqlParameter ParameterGender = new SqlParameter()
                        Value = objemp.Gender,
                        ParameterName = "@Gender"
                    cmd.Parameters.Add(ParameterGender);
                    SqlParameter ParameterDateofBirth = new SqlParameter()
                        Value = objemp.DateofBirth,
                        ParameterName = "@DateofBirth"
                    cmd.Parameters.Add(ParameterDateofBirth);
                    con.Open();
                    cmd.ExecuteNonQuery();
    The Service Contract  code is
    namespace EmployeeService
        // NOTE: You can use the "Rename" command on the "Refactor" menu to change the interface name "IService1" in both code and config file together.
        [ServiceContract]
        public interface IEmployeeService
            [OperationContract]
            Employee GetEmployee(int Id);
            [OperationContract]
            void SaveEmployee(Employee objemp); 
            // TODO: Add your service operations here
        // Use a data contract as illustrated in the sample below to add composite types to service operations
    and i deployed the EmployeeService in iis and consuming the service in my web application the code is below
     protected void btnsave_Click(object sender, EventArgs e)
                EmployeeService.EmployeeServiceClient client = new EmployeeService.EmployeeServiceClient("basicHttpBinding");
                EmployeeService.Employee employee = new EmployeeService.Employee();
                employee.Id = Convert.ToInt32(txtid.Text);
                employee.Name = txtname.Text;
                employee.Gender = txtgender.Text;
                employee.DateofBirth = Convert.ToDateTime(txtdob.Text);
                client.SaveEmployee(employee);
            protected void btnget_Click(object sender, EventArgs e)
                EmployeeService.EmployeeServiceClient client = new EmployeeService.EmployeeServiceClient("basicHttpBinding");
                EmployeeService.Employee employee = client.GetEmployee(Convert.ToInt32(txtid.Text));
                txtname.Text = employee.Name;
                txtgender.Text = employee.Gender;
                txtdob.Text = employee.DateofBirth.ToShortDateString();
    and  when i am entering the details of employee Id,Name,Gender,DateofBirth and clicking save button iam getting the following error 
    The server was unable to process the request due to an internal error.  For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug> configuration behavior)
    on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs.
    Code in web.config file in Webapplication(Client) is the following
    <?xml version="1.0"?>
    <!--
      For more information on how to configure your ASP.NET application, please visit
      http://go.microsoft.com/fwlink/?LinkId=169433
      -->
    <configuration>
        <system.diagnostics>
            <sources>
                <source name="System.ServiceModel.MessageLogging" switchValue="Warning, ActivityTracing">
                    <listeners>
                        <add type="System.Diagnostics.DefaultTraceListener" name="Default">
                            <filter type="" />
                        </add>
                        <add name="ServiceModelMessageLoggingListener">
                            <filter type="" />
                        </add>
                    </listeners>
                </source>
                <source name="System.ServiceModel" switchValue="Warning, ActivityTracing"
                    propagateActivity="true">
                    <listeners>
                        <add type="System.Diagnostics.DefaultTraceListener" name="Default">
                            <filter type="" />
                        </add>
                        <add name="ServiceModelTraceListener">
                            <filter type="" />
                        </add>
                    </listeners>
                </source>
            </sources>
            <sharedListeners>
                <add initializeData="C:\Users\HEMANTH\Desktop\Client\Client\Web_messages.svclog"
                    type="System.Diagnostics.XmlWriterTraceListener, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
                    name="ServiceModelMessageLoggingListener" traceOutputOptions="Timestamp">
                    <filter type="" />
                </add>
                <add initializeData="C:\Users\HEMANTH\Desktop\Client\Client\Web_tracelog.svclog"
                    type="System.Diagnostics.XmlWriterTraceListener, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
                    name="ServiceModelTraceListener" traceOutputOptions="Timestamp">
                    <filter type="" />
                </add>
            </sharedListeners>
            <trace autoflush="true" />
        </system.diagnostics>
        <system.web>
            <compilation debug="true" targetFramework="4.0" />
        </system.web>
        <system.serviceModel>
            <diagnostics>
                <messageLogging logEntireMessage="true" logMalformedMessages="true"
                    logMessagesAtTransportLevel="true" />
            </diagnostics>
            <bindings>
                <basicHttpBinding>
                    <binding name="basicHttpBinding" />
                </basicHttpBinding>
                <wsHttpBinding>
                    <binding name="mexHttpBinding">
                        <security mode="None" />
                    </binding>
                </wsHttpBinding>
            </bindings>
            <client>
                <endpoint address="http://localhost/EmployeeWebServices/EmployeeService.svc/basic"
                    binding="basicHttpBinding" bindingConfiguration="basicHttpBinding"
                    contract="EmployeeService.IEmployeeService" name="basicHttpBinding" />
                <endpoint address="http://localhost/EmployeeWebServices/EmployeeService.svc/mex"
                    binding="wsHttpBinding" bindingConfiguration="mexHttpBinding"
                    contract="EmployeeService.IEmployeeService" name="mexHttpBinding" />
            </client>
        </system.serviceModel>
    </configuration>
    Things i have tried till now are 
    1)changed the name of the name of the endpoint address basicHttpBinding to  basicHttpBinding_IEmployeeService but still get the save error.
    2)Opened the Message Log Trace. Got the error as follows
    <MessageLogTraceRecord>
    <HttpResponse xmlns="http://schemas.microsoft.com/2004/06/ServiceModel/Management/MessageTrace">
    <StatusCode>InternalServerError</StatusCode>
    <StatusDescription>Internal Server Error</StatusDescription>
    <WebHeaders>
    <Content-Length>730</Content-Length>
    <Cache-Control>private</Cache-Control>
    <Content-Type>text/xml; charset=utf-8</Content-Type>
    <Date>Sat, 03 Jan 2015 12:12:24 GMT</Date>
    <Server>Microsoft-IIS/7.5</Server>
    <X-AspNet-Version>4.0.30319</X-AspNet-Version>
    <X-Powered-By>ASP.NET</X-Powered-By>
    </WebHeaders>
    </HttpResponse>
    <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
    <s:Header></s:Header>
    <s:Body>
    <s:Fault>
    <faultcode xmlns:a="http://schemas.microsoft.com/net/2005/12/windowscommunicationfoundation/dispatcher" xmlns="">a:InternalServiceFault</faultcode>
    <faultstring xml:lang="en-US" xmlns="">The server was unable to process the request due to an internal error.  For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute
    or from the <serviceDebug> configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs.</faultstring>
    </s:Fault>
    </s:Body>
    </s:Envelope>
    </MessageLogTraceRecord>
    Try to understand but could not understand because i'am new to wcf services. Please help me to find the error details.
    Thanks in advance
    Regards
    rax227 
                           

    Hi Mohan,
    I didn't use Fiddler before, I just download and use it but how to see the request message from this software?
    I have logged the request to event log before send to web service and copy this request from event log to testing with soapUI, so I don't think have between the actual messages being sent to your client via orchestration and soapui. In the log Response shape
    I see the fault response in event log.
    You can see
    this link to know how to use fiddler. As I suggested above the error you need to check is at the server side who is hosting the service( your party ) because you are getting fault response properly from them. The webservice you are calling seems to look
    like WCF service too. Your life would have been so easier if you could ask them to have firewall open from your dev box to their dev server so that you can use use "Add Service Reference" wizard, that even they have .NET wcf service too. 
    Did you by any chance manage to talk to them what they are getting or if they can increase the exception details in the fault message for you?
    If this answers your question please mark it as Answer and if this post is helpful, please vote as helpful. Thanks !

  • Windows Backup - The backup application coud not start due to an internal error: You must be logged on as an administrator to perform this task. (0x8100000010).

    Windows 7 users in my domain are unable to configure or change backup settings.  Users are able to open Control Panel > Backup and Restore, but when they click
    Change settings, they receive the error: Windows Backup - The backup application coud not start due to an internal error: You must be logged on as an administrator to perform this task. (0x8100000010).
    The same error is received when executing sdclt.exe /configure at the command prompt, regardless of whether the command prompt is launched using "run as administrator".
    I've done significant testing, and have been able to determine that the local administrator account is able to configure backups before the computer is joined to the domain.  Once the computer is joined to the domain, the local administrator account
    and domain users who are in the local administrators group are no longer able to configure backup and restore.  Domain administrators are able to configure backups.
    This is a new issue, which began occuring sometime in the last 2 months.  3 months ago, users were able to configure backups without issue, and those computers with backups configured are still able to run their backups and do restores; however the
    settings can no longer be changed. 
    Clearly something in the domain is doing this, but Group Policy has not been altered, and I can find no setting that would be doing this in any case.  Any help is appreciated. 

    Hi,
    So you mean you have tried different accounts in the local Administrator group and all of them failed?
    If so, please check what group the local Administrator group belongs to? Does it belong to a group with limited privileges, such as the Guests group?
    Tim Quan

  • Can't launch itunes due to the following error; The procedure entry point AVCFPlayerAppliesMediaSelectionCriteriaKey could not be located in the dynamic link library AVFoundationCF.dll.

    Can't launch itunes due to the following error; The procedure entry point AVCFPlayerAppliesMediaSelectionCriteriaKey could not be located in the dynamic link library AVFoundationCF.dll.

    Hey bcolden,
    I would try uninstalling and reinstalling following the directions in here:
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/HT1923
    This section in particular contains important information in the uninstall process:
    Use the Control Panel to uninstall iTunes and related software components in the following order and then restart your computer:
    iTunes
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support (iTunes 9 or later)
    Important: Uninstalling these components in a different order, or only uninstalling some of these components may have unintended affects.
    Let us know if following that article and uninstalling those components in that order helped the situation.
    Welcome to Apple Support Communities!
    Best,
    Delgadoh

  • Error 244: The DataFinder cannot start due to an internal error.

    I have LabVIEW 2010 and, during Windows start-up, this error message pops up:
    "The DataFinder cannot start due to an internal error.
    (244): Please wait till the National Instruments PSP Service is running and try starting the DataFinder again or reboot your computer."
    I have had this error message pop up for the past year so it is a recurring thing. It started showing up a few months after I had installed the LabVIEW program onto my computer, so I am not sure on what caused this message to consistently pop up. I find that it also causes a delay in the starting up of my computer--my other start-up applications will begin to show only when I close the error window. Please help! Thank you.
    Solved!
    Go to Solution.

    Hi xcontradictorx,
    It sounds like the National Instruments PSP Server Locator might not be started. Could you go to Control Panel >> Administrator Tools >> Services and locate the National Instruments PSP Server Locator? Double-click on it and make sure that the service is started. If it is, stop it and start it again (just by hitting the stop and start buttons). If it is not, start it, then go to the Recovery Tab and choose Restart the Service as the action for First, Second, and Subsequent failures. 
    If after change the settings for the PSP service the issue continues I would think that for some reason the PSP service is just being started late for some reason. Could you do a test real quick: disable the DataFinder in msconfig, reboot, then run the DataFinder.exe from C:\Program Files\National Instruments\Shared\DataFinderDesktop\bin. This should place the MyDataFinder app in your system tray (it looks like a yellow gear). 
    If this is successful, then we will need to change the order of startup services such that the DataFinder just starts after the PSP service. 
    Try the following: 
    1) Locate the DataFinder entry from the registry. Located at HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run 
    2) Delete the DataFinder entry 
    3) Add a shortcut of DataFinder.exe to C:\Documents and Settings\All Users\Start Menu\Programs\Startup 
    4) Reboot 
    This should do all the standard Windows Startup (like starting services, etc.) and then launch the DataFinder. 
    One question: do you use the DataFinder at all? Either with DIAdem or the Data Finder toolkit? If not, you could try removing it from the Startup items. Just go to Start >> Run... and type "msconfig". Choose the Startup tab, locate DataFinder, and deselect it. Click apply. This will probably get rid of the error message.
    Patrick H | National Instruments | Software Engineer

  • Error: The DataFinder cannot start due to an internal error

    Hello,
    I get the same error message every time I reboot my Win 7 PC:
    "National Instruments DataFinder"
    "The DataFinder cannot start due to an internal error."
    "Please wait till the National Instruments DataFinder Index Service is running and try starting the DataFinder again, or reboot your computer. "
    I tried finding a DataFinder Index Service in the Control Panel --> Admin,istrative Tools --> Services, as mentioned in this post http://forums.ni.com/t5/LabVIEW/Error-244-The-DataFinder-cannot-start-due-to-an-internal-error/td-p/...,
    but there was none such listed service:
    I cannot find any mention of a DataFinder or a DataFinder Index Service anywhere else on my PC. Can you please help to find out where this error is coming from and how to fix it? As far as I am aware, I do not use this DataFinder. Thanks!
    Regards,
    Brandon

    Hello BrandonVonk,
    The toolkit wouldn't show up in your installed programs list as it is more like a plugin to LabVIEW. Instead, pull up NI License Manager and go to Local Licenses > LabVIEW XXXX > Toolkits and see if it is listed amongst the toolkits you have installed. There should be a geen box next to it to indicate that it has been installed and activated.
    Hope this helps,
    Siana A.
    Application Engineering
    National Instruments

  • A client made a DirSync LDAP request for a directory partition. Access was denied due to the following error

    We started getting this error when we installed Lync Server. I already verified that the "RTCHSUniversalServices" group has “Replicating Directory Changes" permission.
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    A client made a DirSync LDAP request for a directory partition. Access was denied due to the following error.
    Directory partition:
    DC=<domain>,DC=com
    Error value:
    8453 Replication access was denied.
    User Action
    The client may not have access for this request. If the client requires it, they should be assigned the control access right "Replicating Directory Changes" on the directory partition in question.
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Domain Controllers and Lync server are running on Windows 2008 SP2. Any other things that I could check?

    A client made a DirSync LDAP request for a directory partition. Access was denied due to the following error.
    Directory partition:
    DC=<domain>,DC=com
    Error value:
    8453 Replication access was denied.
    User Action
    The client may not have access for this request. If the client requires it, they should be assigned the control access right "Replicating Directory Changes" on the directory partition in question.
    oas4ever

  • Session "ReadyBoot" stopped due to the following error: 0xC0000188

    Just built a new system and every once in a while my computer hangs logging into windows.
    i7 2600k
    16 gigs/ram
    Intel 320 Series SSD x2 in RAID 0
    GTX 580
    Overview of event logs shows the following.
    Intel(R) 82583V Gigabit Network Connection
     Network link is disconnected.
    Session "Microsoft Security Client OOBE" stopped due to the following error: 0xC000000D
    A timeout was reached (30000 milliseconds) while waiting for the ASUS Com Service service to connect.
    The ASUS Com Service service failed to start due to the following error:
    The service did not respond to the start or control request in a timely fashion.
    Event filter with query "SELECT * FROM __InstanceModificationEvent WITHIN 60 WHERE TargetInstance ISA "Win32_Processor" AND TargetInstance.LoadPercentage > 99" could not be reactivated in namespace "//./root/CIMV2" because of error 0x80041003. Events
    cannot be delivered through this filter until the problem is corrected.
    The maximum file size for session "ReadyBoot" has been reached. As a result, events might be lost (not logged) to file "C:\Windows\Prefetch\ReadyBoot\ReadyBoot.etl". The maximum files size is currently set to 20971520 bytes.
    Session "ReadyBoot" stopped due to the following error: 0xC0000188
    On Asus connect I changed this service to delayed start I believe it is for my motherboard updates. Superfetch is disabled. My page file is not on my SSD drive but on my regular sata drives configured in RAID 5. It doesn't do this everytime I reboot just
    seems like it happens after my computer has been on for a while and I turn it off for a few hours and turn it back on to log into windows (put in my password it says welcome) and it takes several minutes to log in.
    Tried to do a little research on this but I am turning up 50/50 stuff on rather or not readyboost/superfetch should be on or off and I guess this is what is causing it.... maybe I dont know for sure. Looking for proper information.
    Thanks

    I apologize I have not responded sooner. Also I wanted to wait for it to happen again and compare logs from that time and this time because it still happens.
    Activation context generation failed for "c:\program files\microsoft security client\MSESysprep.dll".Error in manifest or policy file "c:\program files\microsoft security client\MSESysprep.dll" on line 10. The element imaging appears as a child of element
    urn:schemas-microsoft-com:asm.v1^assembly which is not supported by this version of Windows.
    Intel(R) 82579V Gigabit Network Connection
    Network link is disconnected.
    This error is
    repeated three times. I have vmware workstation installed I am actually going to uninstall it and move it to spinning drives and get it off my SSD drives.
     The
    description for Event ID 1000 from source vmauthd cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event:
    2012-01-20T07:58:27.786-06:00| vthread-4| W110: TicketLimitFileAccess: Successfully added access-allowed ACE to file's DACLthe message resource is present but the message is not found in the string/message table
    Intel(R)
    82579V Gigabit Network Connection
    Network link is disconnected.
    Intel(R) 82579V Gigabit Network Connection
    Network link is disconnected.
    Name resolution for the name wpad.westell.com timed out after none of the configured DNS servers responded. (im having internet provider issues today so this can be ignored)
    Session "Microsoft Security Client OOBE" stopped due to the following error: 0xC000000D

  • I am trying to update to iTunes 10 to us my new iPad, but I can not remove a corrupted "apple software update" program... I can get everything else off, but due to "previous version" of software update it will not continue.

    I am trying to update to iTunes 10 to us my new iPad, but I can not remove a corrupted? "apple software update" program... I can get everything else off, but due to "previous version" of software update it will not continue.
    I stopped in to see one of the genius at the local store who referred me to "Windows Installer 4.5 Redistributable" (I am trying to install it on a Windows XP System)
    The last version on iTunes on my PC was iTunes 7.
    Thanks for your help,
    Julia from Woodridge

    Unfortunately, this sort of trouble has gotten more complicated to deal with ever since Microsoft pulled the Windows Installer CleanUp utility from their Download Center on June 25. First we have to find a copy of the utility.
    Let's try Googling. (Best not to use Bing, I think.) Look for a working download site for at least version 3.0 of the Windows Installer CleanUp utility. After downloading the utility installer file (msicuu2.exe), scan the file for malware, just in case. (I use the free version of Malwarebytes AntiMalware to do single-file scans for that.)
    If the file is clean, to install the utility, doubleclick the msicuu2.exe file you've downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any Apple Software Update entries and click "Remove".
    Quit out of CleanUp, restart the PC and try installing iTunes again. Does the install go through properly now?
    (If you do find a clean download site for the correct version of CleanUp, please don't tell me where it is. Without wishing to sound paranoid (although I grant it does sound paranoid), there is a non-zero chance that posting links to download locations for the utility here at Discussions leads to that download location being shut down.)

  • Microsoft Intune was unable to set the desired mobile device policy for one or more users due to the following error: A2CE0100

    Hi!
    We have fatal or critical error message on Microsoft Intune Portal but all agents are working just fine. Before opening support ticket we would like to hear comments from the experts on this forum. We would also like to fix this error before starting to
    manage mobile devices with Intune.
    Error message on Intune Portal:
    "Microsoft Intune was unable to set the desired mobile device policy for one or more users due to the following error: A2CE0100"
    Repeated: 19 times.
    Class: (System) Policy
    Random Fatal error message on C:\Program Files\Microsoft\OnlineManagement\Logs\PolicyAgent.log found from one Windows 8.1 client:
    2015-02-21 08:49:20:704 2852 1ab0 FATAL: DocumentProvider::IndicateToConsumer/pp->ProcessPolicies(NULL, NULL, NULL, NULL) failed with error 0x800704d5.
    That said, we are not facing any specific problem but we would like to find symptom of this repeating error message on Intune Portal . We would appreciate to get any thoughts about this case.
    Br.
    Jukka

    Hi Jukka,
    Mobile policy doesn't apply to clients using the Full Client download.  Please open a support case so the team can assist in further troubleshooting.
    Thanks,
    Jon L. - MSFT - This posting is provided "AS IS" with no warranties and confers no rights.

  • I cannot save my work in Illustrator CC2014.1 due to an 'unknown error'. Any ideas on a solution?

    Hi there,
    I have produced some work in illustrator and wanting to save before I proceed but Illustrator will not allow me due to an unknown error. I have tried some ideas posted on the web (turning off the visibility of layers, saving as an EPS) but to no avail. I have tried resetting my preferences and turning off sync settings but again no luck. Is anyone else experiencing this and anyone have any ideas on a solution?
    Many thanks,
    Matt

    Hi Jacob,
    Thanks for the idea.
    Tried that, (tried all the Save As options) and the same 'unknown error' occurs. I have tried saving as an Illustrator EPS and a different alert comes up as 'Cannot Save. A necessary item is missing: ID: 192'. No idea what the necessary item is? Mithril? Gold?
    Raghuveer- yes, it still is an issue- joined the connect session and waiting for your response.
    Many thanks,
    Matt

  • The Web Dynpro component cannot be generated due to serious (syntax) errors

    Hi everybody,
    While I was developing a web dynpro application, I had an error but I couldn't understand this error. Before I took this error message, only I changed bound one context node to another context node in a RadioButtonGroupByKey.Therefore, when I pushed activate button, I took an error message.This error message said "The Web Dynpro component cannot be generated due to serious (syntax) errors". What does it mean ? How can I find out where is the error in the application. Also, I think the reason of this error message is about a BC problem. I am waiting for your comment urgently.

    Hi ,
    Just delete the context (by using the context binding) and bind the field with the correct node and try to activate .
    One more suggestion is that after deleting the binding and before binding to other node check it that whether that binding was properly deleted or not.Some times its not deleting the binding.
    Hopely my suggestion may work.
    Regards,
    Satya

  • The Microsoft Exchange Mailbox Replication service was unable to process a request due to an unexpected error. Event 1121

    Hello all,
    We migrated our Exchange server from 2003 to 2010. After the mailbox move requests were finished we had one that was stuck. We basically skipped it as we had a lot of other things to finish over the weekend. Here we are a year later, the old exchange server
    is gone and so is an old DC. I am receiving an error every four minutes in event viewer.
    The Microsoft Exchange Mailbox Replication service was unable to process a request due to an unexpected error.
    Request GUID: '3e46b7cb-2ac0-42c1-98e8-57517a19ee40' 
    Database GUID: '5c6c573b-4f45-4ce3-b296-11cf69c2e2b6'
    Error: Unable to find 'OLD Domain Controller' computer information in domain controller 'OLD Domain Controller' to perform the suitability check. Verify the fully qualified domain name..
    I have checked in EMC for move requests. None are listed. I have checked the DCs listed in EMC properties. Old DC is not listed.
    I also ran these commands in shell to attempt to cancel the stuck request.
    Get-MoveRequest -MoveStatus Completed;Pending;InProgress;Failed;CompletedWithWarning;Suspended;Queued;CompletionWithProgress : Remove-MoveRequest
    NO changes. Still throwing error. Any suggestions? I also tried using the guid and shell to look at the move request. Systems replies no such request.

    Hello,
    Please try to restart iis services to check the result.
    If the issue persists, I recommend you ping you DC server on your exchange server to check if your exchange server can communicate with your DC server.
    If there are other DCs, please try to use set-adserversettings cmdlet to specify a DC for your exchange server.
    Set-AdServerSettings
    http://technet.microsoft.com/en-us/library/dd298063(v=exchg.150).aspx
    Besides, please install the lasted rollup to check the result.
    Cara Chen
    TechNet Community Support

  • The Microsoft Exchange Mailbox Replication service was unable to process a request due to an unexpected error. : Error: An Active Directory Constraint Violation error occurred

    Hello,
    We have a multi domain parent child AD domain infrastructure and now we upgraded our exchange from Exchange 2007 to Exchange 2013. Since last few days, we see the below error on the mailbox server event viewer.
    EVENT ID : 1121
    The Microsoft Exchange Mailbox Replication service was unable to process a request due to an unexpected error. 
    Request GUID: '93a7d1ca-68a1-4cd9-9edb-a4ce2f7bb4cd' 
    Database GUID: '83d028ec-439d-4904-a0e4-1d3bc0f58809' 
    Error: An Active Directory Constraint Violation error occurred on <domain controller FQDN>. Additional information: The name reference is invalid. 
    This may be caused by replication latency between Active Directory domain controllers. 
    Active directory response: 000020B5: AtrErr: DSID-0315286E, #1:
    Our Exchange setup is in parent domain, but we keep on getting this error for various domain controllers in each child domain in the same site. We then configured one of the parent domain domain controller on Exchange. Still we are getting this error for
    the configured parent domain DC.
    Verified the AD replication and there is no latency or pending stuffs.
    Any support  to resolve this issue will be highly appreciated. Thank you in advance.
    Regards,
    Jnana R Dash

    Hi,
    In addition to Ed's suggestion, I would like to clarify the following things for troubleshooting:
    1. Please restart IIS at first.
    2. If the issue persists, please ping your DC on your Exchange server to check if Exchange can communicate with DC.
    Hope it helps.
    Best regards,
    Amy Wang
    TechNet Community Support

Maybe you are looking for