B1 8.8 EventLogger:  Cross-thread operation not valid

Greetings,
I'm  trying to run EventLogger on Windows Server 2008 for use with B1 8.8.  I converted EL to VS 2005, updated it to use the new UI for 8.8 and when EL runs it crashes as soon as it receives an event.
The message is "Cross-thread operation not valid: Control 'ToolBar1' accessed from a thread other than the thread it was created on.
Does anyone have any ideas?  I wouldn't be surprised if it's a security issue, but I wouldn't know how to fix it even if it were.
Thanks!

Sheer Genius, Eddy - thanks!
I tried recompiling the program and used the advanced compile option to tell it X86 but that didn't solve it (by itself, anyway) but when I used the compability mode everything was smooth.

Similar Messages

  • OracleConnection.ClearAllPools() throws exception Operation not valid due t

    My app allows new logons so during the app startup I call my general "new logon" procedure that among other things does a ClearAllPools.
    OracleConnection.ClearAllPools() throws exception "Operation not valid due to current state of the object".
    I have converted from
    System.Data.OracleClient.OracleConnection
    to
    Oracle.DataAccess.Client.OracleConnection
    Did not have any problem when using the former.

    According to the documentation, ClearAllPools() throws an exception if there's no connection pool to clear. Most likely in that case the System.Data.OracleClient version is just not doing anything instead.
    You should just be able to catch InvalidOperationException() at that point and ignore it.

  • Issue installing ITunes : error key not valid for use in specified state

    On the latest update for iTunes for Windows the updated couldn't complete as it gave me the following message " key not valid for use in specified state". I then completly uninstalled iTunes and its components in the order advised, rebooted my system, ran the latest ITunes setup and still get the message " key not valid for use in specified state".
    I have checked all the directories to ensure no remnants.
    Any one got an answer to this issue as I no longer have access to ITunes. I have a Laptop running Windows Vista Business
    Thanks,
    Stones of Gold

    It seems we may have a more targeted solution. Based on posts in the thread  key not valid for use in specified state I've just added the following to the user tip.
    For "Key not valid for use in specified state" errors try moving the folder RSA from C:\Users\<User>\AppData\Roaming\Microsoft\Crypto\RSA to say C:\RSA (just in case there should be a need to restore it) then try installing again. This folder appears to act as a cache and should be rebuilt automatically as required.
    tt2

  • Consistent Error Message:  Key not valid for use in specified state

    For several years I have been trying to use iTunes.  Without success, I decided to try to reinstall the program and now I am getting the above error message.

    It seems we may have a more targeted solution. Based on posts in the thread  key not valid for use in specified state I've just added the following to the user tip.
    For "Key not valid for use in specified state" errors try moving the folder RSA from C:\Users\<User>\AppData\Roaming\Microsoft\Crypto\RSA to say C:\RSA (just in case there should be a need to restore it) then try installing again. This folder appears to act as a cache and should be rebuilt automatically as required.
    tt2

  • When trying to download Itunes this pops up " key not valid for use in specified state" what does this mean and how can I fix it?

    When trying to download Itunes this pops up " key not valid for use in specified state" what does this mean and how can I fix it? I am using a pc laptop if that makes any difference.

    Try reading through this thread: key not valid for use in specified state. Possible solution involves moving the RSA folder. Rather than deleting it as aniwack suggested I'd try this:
    For "Key not valid for use in specified state" errors try moving the folder RSA from C:\Users\<User>\AppData\Roaming\Microsoft\Crypto\RSA to say C:\RSA (just in case there should be a need to restore it) then try installing again. This folder appears to act as a cache and should be rebuilt automatically as required.
    tt2

  • I have a problem in this that i want to paas a form in a case that when user pres n then it must go to a form but error arises and not working good and threading is not responding

    made in cosmos help please need it
    using System;
    using Cosmos.Compiler.Builder;
    using System.Threading;
    using System.Windows.Forms;
    namespace IUOS
        class Program
            #region Cosmos Builder logic
            // Most users wont touch this. This will call the Cosmos Build tool
            [STAThread]
            static void Main(string[] args)
                BuildUI.Run();
            #endregion
            // Main entry point of the kernel
            public static void Init()
                var xBoot = new Cosmos.Sys.Boot();
                xBoot.Execute();
                Console.ForegroundColor = ConsoleColor.DarkBlue;
                a:
                Console.WriteLine("------------------------------");
                Console.WriteLine("WELCOME TO THE NEWLY OS MADE BY THE STUDENTS OF IQRA UNIVERSITY!");
                Console.WriteLine("------------------------------");
                Console.WriteLine();
                Console.WriteLine();
                Console.WriteLine();
                Console.WriteLine("\t _____                                
                Console.WriteLine("\t|     |        |            |        
    |            |      |");
                Console.WriteLine("\t|     |        |            |        
    |            |      |");
                Console.WriteLine("\t|     |        |            |        
    |            |      |");
                Console.WriteLine("\t|     |        |            |        
    |            |      |___________");
                Console.WriteLine("\t|     |        |            |        
    |            |                  |");
                Console.WriteLine("\t|     |        |            |        
    |            |                  |");
                Console.WriteLine("\t|     |        |            |        
    |            |                  |");
                Console.WriteLine("\t|     |        |            |        
    |            |                  |");
                Console.WriteLine("\t|     |        |            |        
    |            |                  |");
                Console.WriteLine("\t|_____|        |____________|         |____________|      ____________");
                string input;
                Console.WriteLine();
                Console.Write("\nAbout OS     : a");
                Console.Write("\nTo Shutdown  : s");
                Console.Write("\nTo Reboot    : r");
                Console.Write("\nStart Windows Normaly : n");
                Console.WriteLine();
                input = Console.ReadLine();
                if (input == "s" || input == "S"){
                    Cosmos.Sys.Deboot.ShutDown();
                else
                if (input == "r" || input == "R"){
                    Cosmos.Sys.Deboot.Reboot();
                else
                if (input == "a" || input == "A"){
                    Console.ForegroundColor = ConsoleColor.DarkBlue;
                    Console.Clear();
                    Console.WriteLine("\n\n\n-------------------------------------");
                    Console.WriteLine("version: DISPLAYS OS VERSION");
                    Console.WriteLine("about: DISPLAYS INFO ABOUT ANGRY OS");
                    Console.WriteLine("hello or hi: DISPLAYS A HELLO WORLD");
                    Console.WriteLine("MESSAGE THAT WAS USED TO TEST THIS OS!!");
                    Console.WriteLine("-----------------------------------");
                    Console.Write("You Want to know : ");
                    input = Console.ReadLine();
                    if (input == "version"){
                        Console.WriteLine("--------------------");
                        Console.WriteLine("OS VERSION 0.1");
                        Console.WriteLine("--------------------");
                    else
                    if (input == "about"){
                        Console.WriteLine("--------------------------------------------");
                        Console.WriteLine("OS IS DEVELOPED BY Qazi Jalil-ur-Rahman & Syed Akber Abbas Jafri");
                        Console.WriteLine("--------------------------------------------");
                    Console.Write("Want to go back to the main window");
                    Console.Write("\nYes : ");
                    string ans = Console.ReadLine();
                    if (ans == "y" || ans == "Y")
                        goto a;
                        Thread.Sleep(10000);
                    else
                    if (input == "n" || input == "N")
                        Thread.Sleep(5000);
                        Console.Clear();
                        for (int i = 0; i <= 0; i++){
                            Console.Write("\n\n\n\n\t\t\t\t\t  ____        ____   ___  
                            Console.Write("\n\t\t|\t\t |  |      |    |     
    |   |  | |  |  |");
                            Console.Write("\n\t\t|\t|    |  |----  |    |     
    |   |  | |  |  |---");
                            Console.Write("\n\t\t|____|____|  |____  |___ |____  |___|  |    |  |___");
                            Thread.Sleep(500);
                        Thread.Sleep(5000);
                        Console.Clear();
                        BootUserInterface();
                        Console.ReadLine();
    //                    Form1 fo = new Form1();
                    else{
                        for (int i = 0; i <= 5; i++){
                            Console.Beep();
                            Thread.Sleep(1000);
                            goto a;
                while (true);
            private static void BootUserInterface() {
                Thread t = new Thread(UserInterfaceThread);
                t.IsBackground = true;
                t.SetApartmentState(ApartmentState.STA);
                t.Start();
            private static void UserInterfaceThread(object arg) {
                Form1 frm = new Form1();  // use your own
                Application.Run(frm);
     

    Hi
    Jalil Cracker,
    >>when user pres n then it must go to a form but error arises and not working good and threading is not respondin
    Could you post the error information? And which line caused this error?
    If you want to show Form1, you can use form.show() method
    Form1 frm = new Form1();
    frm.Show();
    In addition, Cosmos is an acronym for C# Open Source Managed Operating System. This is not Microsoft product.If the issue is related to Cosmos, it would be out of our support. Thanks for your understanding. And you need raise an issue at Cosmos site.
    Best regards,
    kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Local variables with cross dimensional operator

    Hi,
    I have a business rule, which has the following calculation :
    VAR TOTPROD;
    TOTPROD = "Prod1"+"Prod2"+"Prod3";
    "MBR1" = "MBR2"->"Jan"->TOTPROD/"MBR2"->"YearTotal"->"TotalProducts";
    The above statement does not run for obvious reasons that TOTPROD is not a member name.
    Is there a way to use a local variable in a cross dimensional operator statement?
    I want to use the local variable in order to avoid making an alternate hierarchy.
    I am using Essbase / HPB 11.1.2.2
    Please help.
    Thanks.

    Hi
    As you state, I dont think the approach that you have is going to work.
    What about either
    a. Creating a dummy product member in your outline and place your result on it (or use an existing 'dummy' product member)
    b. Re-write your code to handle what you wish to do....something like (assuming you are adding Prod1, 2 and 3):
    "MBR1" = ("MBR2"->"Jan"-> "Prod1"+"MBR2"->"Jan"-> "Prod2"+"MBR2"->"Jan"-> "Prod3")/"MBR2"->"YearTotal"->"TotalProducts";
    Not sure if I am missing anything here, but do either of these suggestions help?
    JB

  • Axis2: Operation not found

    Hi guys,
    First of all my apologies if this is the incorrect forum for this topic - I'm quite new to web services!
    I was wondering if I could ask about a "Operation Not found" problem I'm encountering. When attempting to deploy the sync version and the async version of the same operation on the same instance of axis2 (ie: two operations, both with the same input parameters, but only one with a return parameter) I receive this error:
    <?xml version="1.0" encoding="UTF-8"?>
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
         <soapenv:Header/>
         <soapenv:Body>
              <soapenv:Fault>
                   <faultcode>soapenv:Client</faultcode>
                   <faultstring>Operation Not found EPR is https://10.238.212.125:9443/soap/ManageWidgetSync and WSA Action =  null</faultstring>
                   <detail>
                        <Exception>org.apache.axis2.AxisFault: Operation Not found EPR is https://10.238.212.125:9443/soap/ManageWidgetSync and WSA Action =  null
         at org.apache.axis2.engine.DispatchPhase.checkPostConditions(DispatchPhase.java:51)
         at org.apache.axis2.engine.Phase.invoke(Phase.java:398)
         at org.apache.axis2.engine.AxisEngine.invoke(AxisEngine.java:522)
         at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:487)
         at org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:326)
         at org.apache.axis2.transport.http.util.SOAPUtil.processPostRequest(SOAPUtil.java:62)
         at org.wso2.wsas.transport.jetty.Axis2SOAPHandler.processPostRequest(Axis2SOAPHandler.java:43)
         at org.wso2.wsas.transport.jetty.Axis2Handler.handle(Axis2Handler.java:159)
         at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:627)
         at org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:149)
         at org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:123)
         at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:141)
         at org.mortbay.jetty.Server.handle(Server.java:269)
         at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:430)
         at org.mortbay.jetty.HttpConnection$RequestHandler.content(HttpConnection.java:701)
         at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:617)
         at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:193)
         at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:339)
         at org.mortbay.jetty.bio.SocketConnector$Connection.run(SocketConnector.java:208)
         at org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:475)
    </Exception>
                   </detail>
              </soapenv:Fault>
         </soapenv:Body>
    </soapenv:Envelope>Each web service operation was generated by the WSDL2JAVA tool from a different port in a WSDL file. I ensured that the output from the tool for each service was separated into a separate directory (to ensure no files were overwritten). I also ensured that I specified a different Java package name for the output of each run/operation, to ensure that when it came to merging the Java output the package names would prevent the generated skeletons from being overwritten.
    As each port uses the same underlying data structures, I merged the contents of the two directories together (overwriting files), except the services.xml file, which I manually edited to ensure each service from the individual service.xml files was present in the resultant services.xml file.
    When fleshing out the generated skeleton files to return a response, then building both operations into an aar file and deploying it on to a simple server, I can throw messages at the aysnc version of the operation with no problems. However, I cannot access the sync services as an error (attached) is returned, suggesting that it cannot find the operation. This may be occurring because the sync service operations contain the same input parameters as operations within the provider and consumer services.
    The sync service works correctly if deployed separately, so I'm a little baffled. The services.xml file seems sane (attached too!).
    I do have a feeling it's to do with the dispatchers. However, ensuring the RequestURIBasedDispatcher is the first dispatcher to be used, and then accessing the service via the following uri, does not seem to stop the error:
    http://serviceuri/axis2/services/serviceName/operationName
    I apologise if this is quite a silly question - I am still embracing the learning curve that is Axis 2 ;) Any suggestions or guidance would be very much appreciated!
    Kind regards,
    Simon
    My services.xml file:
    <!-- This file was auto-generated from WSDL --><!-- by the Apache Axis2 version: #axisVersion# #today# --><serviceGroup>
    <service name="ManageEventNotification">
          <parameter name="ServiceClass" locked="false">com.bt.sdk.manageeventnotification.consumer.service.ManageEventNotification</parameter>
           <transports>
              <transport>jms</transport>
              <transport>http</transport>
         </transports>
         <parameter name="transport.jms.Destination" locked="true">MEN.JMS.Q</parameter>
          <operation name="notify" mep="http://www.w3.org/2004/08/wsdl/in-only">
          <messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-only"
                              class="com.bt.sdk.manageeventnotification.consumer.service.ManageEventNotificationMessageReceiverInOnly"/>
             <actionMapping>http://capabilities.nat.bt.com/wsdl/MEN/2006/12/30#notify</actionMapping>
               <module ref="validator"/>
          </operation>
          <operation name="subscribe" mep="http://www.w3.org/2004/08/wsdl/in-out">
             <actionMapping>http://capabilities.nat.bt.com/wsdl/MEN/2006/12/30#subscribe</actionMapping>
         </operation>
        <operation name="createWidgetRequest" mep="http://www.w3.org/2004/08/wsdl/in-only">
          <messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-only"
                              class="com.bt.sdk.manageeventnotification.consumer.service.ManageEventNotificationMessageReceiverInOnly"/>
             <actionMapping>http://capabilities.nat.bt.com/wsdl/MEN/2006/12/30#createWidgetRequest</actionMapping>
         </operation>
       </service>
       <service name="ManageEventNotificationSync">
          <parameter name="ServiceClass" locked="false">com.bt.sdk.manageeventnotification.consumer.service.ManageEventNotificationSync</parameter>
           <transports>
              <transport>jms</transport>
              <transport>http</transport>
         </transports>
         <parameter name="transport.jms.Destination" locked="true">MEN.JMS.Q</parameter>
          <operation name="createWidget" mep="http://www.w3.org/2004/08/wsdl/in-out">
          <messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-out"
                              class="com.bt.sdk.manageeventnotification.consumer.service.ManageEventNotificationMessageReceiverInOut"/>
             <actionMapping>http://capabilities.nat.bt.com/wsdl/MEN/2006/12/30#createWidget</actionMapping>
         </operation>
       </service>
    </serviceGroup>

    Did you manage to find a solution ??
    I'm getting the same problem.

  • WCF Service update UPS. Operation is not valid due to the current state of the object.

    I try import custom data to custom user properties from my own wcf service (on sharepoint server machine), but i got
    Message "Operation is not valid due to the current state of the object. "
    on line
    userProfile[PropertyConstants.Department].Value = "SDDDD";
    Why i cant modify property value?
    SPSecurity.RunWithElevatedPrivileges(delegate()
    using (SPSite site = new SPSite("http://portal.local"))
    SPServiceContext serviceContext = SPServiceContext.GetContext(site);
    using (var web = site.OpenWeb())
    Debug.WriteLine(web.CurrentUser); //Here AppPoolAccount user of current wcf service
    Debug.WriteLine(WindowsIdentity.GetCurrent().Name); //Here too AppPoolAccount user of current wcf service
    UserProfileManager userProfileMgr = new UserProfileManager(serviceContext);
    ProfilePropertyManager profilePropMgr = new UserProfileConfigManager(serviceContext).ProfilePropertyManager;
    ProfileSubtypePropertyManager subtypePropMgr = profilePropMgr.GetProfileSubtypeProperties("UserProfile");
    UserProfile userProfile = userProfileMgr.GetUserProfile(accountName);
    userProfile[PropertyConstants.Department].Value = "SDDDD";
    userProfile.Commit();
    My service running under domain\SPSvcAcc what have full permissions on UPS service, it's management account and UPS admin with full rights.
    If i create console app with identical code and run it under SPSvcAcc account it working without problems
    What i do wrong?

    Hi,
    pls seee if you can add threading like this below to solve the pbm
    https://social.technet.microsoft.com/Forums/office/en-US/b6d6f85c-e12b-4540-a821-690e296b7b56/operation-is-not-valid-due-to-the-current-state-of-the-object-exception-when-activating-a?forum=sharepointdevelopmentprevious
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • Microsoft RMS Add-in Operation is not valid due to the current state of the object

    Microsoft Rights Management sharing application for Windows
    Microsoft Windows 7/Office 2010 Service Pack 2
    Click 'Share Protected'
    Receive the following error message 'Microsoft RMS Add-in Operation is not valid due to the current state of the object'
    Microsoft Windows 7/Office 2013 Service Pack 1
    Works fine
    Any ideas why this is not working?

    Hi lra,
    As per my understanding, I think this issue can be caused by MaxHttpCollectionKeys settings in report manager web.config file.
    For more details, please refer this similar thread to override the default value of MaxHttpCollectionKeys:
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/cb6ede72-6ed1-4379-9d3c-847c11b75b32/report-manager-operation-cannot-run-due-to-current-state-of-the-object?forum=sqlreportingservices
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Macbook pro running windows 8.1 system thread exception not handled

    Running Windows 8.1on MacBook Pro with dual operating system. Get BSOD on boot up with following message - system thread exception not handled but no error code.  Have checked drivers all seem to be updated. Ran fine for a few weeks but Is happening daily also external speakers are not working - please help.

    Was W8.1 installed using Bootcamp? Are BC drivers installed? What year/model is the MBP?

  • "Operation is not valid due to the current state of the object" error when trying to create a link for a shared folder in OneDrive

    I'm trying to share a folder in OneDrive with another user in my organization, and create a link so that people outside of the company can see the folder. Whenever I try to create a link I get an error that says: "Couldn't create the link sorry something
    went wrong operation is not valid due to the current state of the object" How do I resolve this?

    Hi,
    Sorry for replying late and I noticed that you posted another thread in this forum:
    http://social.technet.microsoft.com/Forums/en-US/2b8c6f54-9c59-4b37-b28f-1d49a1b7913b/operation-is-not-valid-due-to-the-current-state-of-the-object-error-when-trying-to-create-a-link?forum=officeitpro
    I've replied and kindly refer to it to see if it is helpful.
    Regards,
    Melon Chen
    TechNet Community Support

  • How should implement multi-thread in single-threaded Operating system using

    How should implement multi-thread in single-threaded Operating system using java?
    Java supports "Multi-threading".Is there is any way run the multiple threads (Implementing multi threading) using java in a Single-threaded Operating system (That is the operating system does not support for multi-threading).

    Previous questions from OP suggest they are using J2ME, so the question might be possible.
    806437 wrote:
    How should implement multi-thread in single-threaded Operating system using java?
    What is the actual question/problem?
    A java app doesn't do threads or not do threads. It uses classes. The VM does threads.
    So if you have a platform that does not have threads and you want to support the thread class then the VM, not a java app, must provide some pseudo mechanism, such as green threads, to support that.
    If your question is about java code and not the VM then you must build a task engine and insure that the tasks are of short enough duration that it is an effective use for your system.

  • FSL-04017 Unable to change group. ID: 505. Operation not permitted

    while i'm installing Solution manager 4.0 with oracle 10g in linux enterprise 4,after the 23rd phase which is "install instance basics" i recived the following error
    INFO 2007-06-25 12:02:25
    Working directory changed to /tmp/sapinst_exe.3484.1182753067.
    INFO 2007-06-25 12:02:25
    Working directory changed to /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS.
    INFO 2007-06-25 12:02:25
    Working directory changed to /tmp/sapinst_exe.3484.1182753067.
    INFO 2007-06-25 12:02:25
    Working directory changed to /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS.
    INFO 2007-06-25 12:02:26
    Working directory changed to /tmp/sapinst_exe.3484.1182753067.
    INFO 2007-06-25 12:02:26
    Working directory changed to /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS.
    WARNING[E] 2007-06-25 12:02:26
    FSL-02015 Node /proc/sys/kernel/cad_pid does not exist.
    WARNING[E] 2007-06-25 12:02:26
    FSL-02015 Node /proc/sys/kernel/cap-bound does not exist.
    WARNING[E] 2007-06-25 12:02:26
    FSL-02015 Node /proc/sys/fs/binfmt_misc/register does not exist.
    INFO 2007-06-25 12:02:27
    Copied file '/tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/inifile.xml' to '/tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/inifile.14.xml'.
    INFO 2007-06-25 12:02:27
    Copied file '/tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/inifile.xml' to '/tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/inifile.15.xml'.
    INFO 2007-06-25 12:02:40
    Copied file '/tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/keydb.xml' to '/tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS/keydb.8.xml'.
    INFO 2007-06-25 12:02:41
    Execute step createInstanceDirectories of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CI_Instance|ind|ind|ind|ind|11|0.
    INFO 2007-06-25 12:02:55
    Working directory changed to /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS.
    INFO 2007-06-25 12:02:55
    Working directory changed to /tmp/sapinst_exe.3484.1182753067.
    INFO 2007-06-25 12:02:55
    Working directory changed to /tmp/sapinst_exe.3484.1182753067.
    INFO 2007-06-25 12:02:55
    Working directory changed to /tmp/sapinst_instdir/SOLMAN/SYSTEM/ORA/CENTRAL/AS.
    INFO 2007-06-25 12:02:55
    Creating instance directories for instance IND/DVEBMGS00...
    INFO 2007-06-25 12:02:56
    File system node /usr/sap/ccms/IND_00 exists already. Nothing to do.
    INFO 2007-06-25 12:02:56
    File system node /usr/sap/IND/put exists already. Nothing to do.
    INFO 2007-06-25 12:02:56
    Account indadm already exists.
    INFO 2007-06-25 12:02:56
    Account 507 already exists.
    INFO 2007-06-25 12:02:56
    Account 507 already exists.
    INFO 2007-06-25 12:02:56
    Account sapsys already exists.
    ERROR 2007-06-25 12:02:56
    MUT-03025 Caught ESyException in Modulecall: Could not set effective group. Operation not permitted.
    ERROR 2007-06-25 12:02:56
    FSL-04017 Unable to change group. ID: 505. Operation not permitted
    ERROR 2007-06-25 12:02:56
    FCO-00011 The step createInstanceDirectories with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CI_Instance|ind|ind|ind|ind|11|0|createInstanceDirectories was executed with status ERROR .
    thks & Rgds
    George Varghese

    Hi
    Well, it is not advised to do it manually, the logged in user (sidadm)
    should have the permissions, the reason being it is required at several points of time and with several folders..
    However, for learning purpose, here is the syntax to be given in command line-
    chgrp -R groupname <directoryName> (for all subdirectory - recursive)
    I gave this jsut to cross verify, please assign the access rights (add to admin group) and then continue installation,
    Revert for queries,
    Cheers
    Senthil

  • Operation not permitted during chown (nouchg doesn't help)

    I've wanted to move my old Time Machine backup files from previous MacBook onto another external drive to leave it unmodified and being able to recall it by option-pressing Time Machine icon. In previous system installation my user had id (id -u) 502, my current user from current Lion install has id 501. I've wanted to chown backup files from 502 to 501 (sudo find PATH -uid 502 -print0 | xargs -0 chown USERNAME) but I've received when chowning directory
    chown: Documents/: Operation not permitted
    I've looked up some threads in discussions and I've tried to modify some HFS specific arguments (nouimmutable, nouchg, nouappnd and others), but it also gave me no luck.
    Below you can find some ls'es from one of directories.
    $ ls -lO
    drwx---rwx@ 31 502  staff  - 1326 18 lip 09:02 Documents
    $ ls -delO Documents/
    drwx---rwx@ 31 502  staff  - 1326 18 lip 09:02 Documents/
    0: group:everyone deny add_file,delete,add_subdirectory,delete_child,writeattr,writeextattr,chown
    1: group:everyone deny delete
    2: user:sup allow list,search,readattr,readextattr,readsecurity
    3: group:admin allow list,search,readattr,readextattr,readsecurity
    $ stat Documents
    234881038 11351802 drwx---rwx 31 (502) staff 0 1326 "Nov  6 15:17:01 2011" "Jul 18 09:02:44 2011" "Nov  6 15:12:57 2011" "Jul 22 02:24:04 2009" 4096 0 0 Documents
    $ ls -@l
    drwx---rwx@ 31 502  staff  1326 18 lip 09:02 Documents
              com.apple.metadata:_kTimeMachineNewestSnapshot            50
              com.apple.metadata:_kTimeMachineOldestSnapshot            50
    $ sudo fsaclctl -p /Volumes/Ragnarok\ Timemachine/ -d
    error (25) from /Volumes/Ragnarok Timemachine/. (Inappropriate ioctl for device)
    $ sudo chown `id -un` Documents
    chown: Documents: Operation not permitted
    Any ideas on what I'm missing?

    Linc Davis wrote:
    You can't modify Time Machine backup files in any way. A determined effort to do so will destroy the repository.
    Thx Davis. Is there any way of coping these files, changing owner and also being browsable by Time Machine (browse other Time Machine disks)?

Maybe you are looking for

  • Media Encoder CC R3D GPU Debayer?

    Does anyone know if the new PrP CC update of added GPU acceleration support for debayering R3D material will also be added into Media Encoder CC, to aid in exporting quicker and not relying only on the CPU?

  • New to Apple have some questions.

    Im looking into getting a portable music device with a large capacity. So far the Ipod Classic is the best as far as price goes but i had a few more questions about its performance and such. First and for most Ive heard lots of people complain their

  • Where can I download Safari 2.0.4?

    Question: Where can I download the prior version of Safari for Mac (2.0.4 or 2.x)? Background: I subscribe to a service (MLB.TV) that on my Mac only works in Safari 2.0.4. I replaced it with the new public beta (3.x), but the site I want to use for w

  • Power wont stay on unless charging?

    Hi, my daughters bb got some water on it the other day we've had it drying out in the airing cupboard since but we tried charging it which it did but as soon as you unplug it it powers off? any ideas? x

  • Darkened Letter box while scrolling--doesn't work in all menus

    I know that one of the latest firmware updates to the iPod included a feature that shows the letters (A, B, C) while scrolling through the list. It works for artists, albums, and songs, but not for all other windows. It doesn't seem to work in Notes,