Batch locked if some other user using same batch

Dear All,
I am facing the batch lock error which say like this :
Batch XXXX of material XXXX is already locked by userXXX. Message no. M3682
Now practically we have the same batch at different distribution centres at different plants. so even if any 1 person is doing anything on that batch than system gives this error message to other person.
Can you please give me any solution to overcome the same.
Thanks in advance......

Firstly please check if you have activated the batch level as 'Batch unique at material level'. If yes, we have to confirm that the system behavior that you are facing is the standard system design.
Please, consider that when you define the batch at material-level, then,the batch data is not plant-depended. This means that a lock on the batch will have effect on postings in all plants.
However, you might want to consider a modification to this standard behavior, see the following  notes:
157423 - Message M3682 for goods movement to the same batch.
633750 - MIGO: Message M3682 with goods movement to same batch.
1422983 - MIGO: Message M3682 during goods movement to same batch

Similar Messages

  • I have been using my iPad with sim for weeks now, just 24 hrs ago the message I am having is no SIM card installed, I tried it with some other SIM card same same still pop up. What can I do pls

    I have been using my iPad with sim for weeks now, just 24 hrs ago the message I am having is no SIM card installed, I tried it with some other SIM card same same still pop up. What can I do pls

    ok, I did, and it said again congrats your iPhone is unlocked, but, when it said there was a new carrier update, I cancelled it, but, it asked me again, I cancelled again, I guess I'm scared it will lock it again if I allow the carrier update.
    Oh, there it goes again, this time on the phone, arg. I hit update, I hope it doesn't freak out.
    I'm glad I didn't destroy the SIM like I almost did. But, it will come out again, longer battery life with the cell portion turned off.

  • Error while updating a task - Task acquired by some other user

    Hi,
    I have a task assigned to a Group (AdminGroup). To update the outcome of task ie to approve task i am first acquiring the task and then updating the task outcome.
    But while doing so i am getting following error:
    Invalid action on workflow task.
    Action OUTCOME_UPDATE on task 101d12624092f7d9:-1f79044d:124e34e8057:-7b4e is not valid because of The task has been acquired by some other user..
    Contact oracle support if error is not fixable.
    at oracle.bpel.services.workflow.task.impl.TaskService.performPreActionValidation(TaskService.java:3408)
    at oracle.bpel.services.workflow.task.impl.TaskService.updateTaskOutcomeAndEvaluateRoutingSlip(TaskService.java:1074)
    at oracle.bpel.services.workflow.task.impl.TaskService.updateTaskOutcome(TaskService.java:941)
    at oracle.bpel.services.workflow.task.impl.TaskService.updateTaskOutcome(TaskService.java:920)
    at oracle.bpel.services.workflow.task.ejb.TaskServiceBean.updateTaskOutcome(TaskServiceBean.java:410)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:31)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAs(Subject.java:396)
    at com.evermind.server.ThreadState.runAs(ThreadState.java:622)
    at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:34)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.TxRequiresNewInterceptor.invoke(TxRequiresNewInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
    at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
    at TaskServiceBean_RemoteProxy_68d4144.updateTaskOutcome(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    The code that i am using for updating the task outcome is as follows:
    The error should not come as the context of user is same for acquiring and updating.
    IWorkflowContext wfCtx=wfSvcClient.getTaskQueryService().authenticate("oc4jadmin", "oc4jadmin",
                   "jazn.com", "admin");
                   ITaskService objITaskService=wfSvcClient.getTaskService();
                   objITaskService.acquireTask(wfCtx, strTaskID);
                   objITaskService.updateTaskOutcome(wfCtx, strTaskID, "APPROVE");
    Here admin is the user that belongs to group AdminGroup and the task is assigned to AdminGroup.
    It was working fine a week ago on the same enviornment but from past few days am getting this error.
    The BPEL version is 10.1.3.0.
    Help appreciated!!
    Regards,
    Bhavik

    hi,
    Thanks Marc for the reply.
    Before acquiring the task , I have checked the acquiredby column in wftask table in orable schema and its value is null.
    So it allows me to acquire the task. The error that i am getting is on updating the task outcome.
    While updating it is giving error as: task already acquired by some other user.
    This should not happen as the workflow context that i am using for acquiring the task and updating the task is same.
    Regards,
    Bhavik

  • Record has been changed by some other user

    Hi All,
    i am working on a network when i make some update in my database through a form on first updation it works fine, while on second updation it gives me an error 'Record has been changed by some other user' wile no other user is currently working on the same form.
    Plz tell me what i can do.
    Wating 4 your reply.
    Thanks in Advance.

    You probably have a database trigger which changes the value of a column which is also part of your form.
    The solution depends on the version of Oracle forms and the database that you are using.
    Oracle forms 6 introduced a DML returning value (block level) which you can set to Yes so that the value(s) changed by the server will automatically be updated within the form. However, you must be running against an Oracle8 (or later) database for this to work.

  • How to share administrator iPhoto library with other users on same iMac?

    How to share administrator iPhoto library with other users on same iMac?

    This is the part I'm referring to:
    If you want the other user to be able to see the pics, but not add to, change or alter your library, then enable Sharing in your iPhoto (Preferences -> Sharing), leave iPhoto running and use Fast User Switching to open the other account. In that account, enable 'Look For Shared Libraries'. Your Library will appear in the other source pane.
    Any user can drag a pic from the Shared Library to their own in the iPhoto Window.
    Remember iPhoto must be running in both accounts for this to work.
    The library stays in the Pictures folder for this.

  • How to share music library with other users using it's own iTunes hdd

    I have 183 gigs of music on my computer. I have it all on it's own hard drive not the OS or "C" drive. I'm pulling my hair trying to configure other users on my computer to access the music on windows Vista
    Cant find any info to help tell me how to do that when the music is on it's own HDD. Can anyone help?

    I don't think you have to drag anything anywhere.
    Let's just say your music is on a drive named G:
    I assume you've set its permissions for everyone. I also assume you can already listen to the files from the G: drive in itunes on your account - so you don't need to consolidate anything; iTunes is already working on your account and you just need to set some other users up to do the same.
    From the section named "On Windows"
    You're already at step 3, so continue with you add them to their library.

  • Hello My ipads Power button is not working properly when I press it once it shows option to turn off instead of locking and some other display problems like it suddenly lockes down or display disappears ...Please help. Thank You

    Hello My ipads Power button is not working properly when I press it once it shows option to turn off instead of locking and some other display problems like it suddenly lockes down or display disappears ...Please help. Thank You

    Thanks for that information!
    I'm sure I will be calling AppleCare, but the problem is, they charge for the phone calls don't they? Because I don't have money to be spending to be on the phone with a support service.
    In other things, it seemed like the only time my MacBook was working was when I had Snow Leopard without the 10.6.8 update download that was supposed to be done to prepare for OS X Lion.
    When I look at the information of my HD it says that I have 10.6.8 but that was the install that it claimed to have failed and caused me to restart resulting in all of the repeated problems.
    Also, because my computer is currently down, and I've lost all files how would that effect the use of my iPhone? Because if it doesn't get fixed by the time OS 5 is released, how would I be able to upgrade?!

  • Logo displaying in productin but not displaying in some other user

    Hello experts,
    I developed payment advice sheet using scripts and transported to production successfully.In production also the output is dispalying correct but some other user (clnt uses different user in that only logo is not displaying) remaining output is correct.
    But only logo is not displaying.But in production logo is displaying.What is the problem?
    please help me in this?

    Please clarify your posting...
    In production, the logo displays correctly for all but one user?
    Or, did you mean that in the production instance, the logo is correct, but in other SAP instance(s), such as training, etc., the logo does not appear? 
    If the second case, check to see that transport completed in all target instances.
    If the first case, sorry, no ideas about what would cause that.

  • No. of users using same transaction

    hai iam shivaa.
    how can we find no. of users using same transaction at a given time on a given server.can i also know the order(time) in which the users started using the transaction?
    eg--no. of users using transation VA01 on a given server at a given time.
        --order in which users started using VAO1

    Hi Shiva,
    If you have got the appropriate solution, reward all useful answers & close the thread.
    Regards,
    Senthilkumar SD

  • Setting OOF for other users using EWS

    Hello everyone,
    I try to set the OOF for other users using EWS in an Exchange 2010 SP2 environment.
    I use this code:
    ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2010_SP2);
    service.Credentials = new NetworkCredential("username", "password", "domain");
    service.TraceEnabled = true;
    service.TraceFlags = TraceFlags.All;
    service.AutodiscoverUrl("[email protected]");
    OofSettings OOFSettings = new OofSettings();
    OOFSettings.ExternalAudience = OofExternalAudience.All;
    OOFSettings.ExternalReply = "Test";
    OOFSettings.State = OofState.Enabled;
    service.SetUserOofSettings("[email protected]", OOFSettings);
    The account I use is a Service Account our Exchange Team set up. I can see all service properties, so I would assume that the connection to the ExchangeService works fine.
    However when SetUserOofSettings executes, I receive a ServiceResponseException “Connection did not succeed. Try again later”.
    What am I missing? Unfortunately, the error message does not provide any helpful informations.
    Thank you and best regards
    Julian

    >The account I use is a Service Account our Exchange Team set up. I can see all service properties, so I would assume that the connection to the ExchangeService works fine.
     What rights have they given the account, giving an Account Exchange Admin permissions won't give you any rights to access the Mailbox content. For this to work the account you using would need to be either have been granted Full Access via Add-MailboxPermission
    or been given Application Impersonation rights (if its the later you need to make sure you use impersonation in your code).
     I would suggestion you try using the EWSEditor
    http://ewseditor.codeplex.com/ to test this out eg try connecting to the users folders and then try the OOF operation via the EWSEditor option to see if this works.
     Other things to check is if this is a Brand new mailbox that has never been connected to before then the Mailbox folders won't be initialized (you can check this using Get-Mailboxstatistics) and you would get an error trying to perform any of
    the EWS operations. If it works on some users and not others the possibly your getting throttled.
    Cheers
    Glen

  • How can I delete old movies that I already purchased, which are saved in my account? Actually I don't want them to be viewed by others who use same account, so is there any solution to delete them? Please advise. Thank you

    How can I delete old movies that I already purchased, which are saved in my account? Actually I don’t want them to be viewed by others who use same account, so is there any solution to delete them? Please advise.

    Delete Purchases = No.
    But there is this...Hiding and unhiding purchases
    iTunes Store  >   http://support.apple.com/kb/HT4919

  • How to assign Tasks to other users using Exchange Web Service.

    How to assign Tasks to other users using Exchange Web Service.
    Any workaround also would help

    Hi Glen,
    I am trying to use ExtendedPropertyType and put in UpdaterItemType as in this code as below. Although it is not updating the Owner
    field.
    I have tried it both by Propertyname and PropertyID. Although new custom property's canbe
    added but to change an existing one like 'Owner' ? Would this be the right method.
    2. And Is ProprertyID a fixed value as 0x811f or does it need to be calculated.
    3. Is 'Owner' the right propertname for assigning a task ?
    Thanks a lot.
    Please see code below for reference.
     PathToExtendedFieldType pathExtended = new PathToExtendedFieldType();
                //pathExtended.DistinguishedPropertySetId = DistinguishedPropertySetType.PublicStrings;
                pathExtended.DistinguishedPropertySetId = DistinguishedPropertySetType.Task;
                pathExtended.DistinguishedPropertySetIdSpecified = true;
                pathExtended.PropertyId = 0x811f;
                pathExtended.PropertyIdSpecified = true;
                //pathExtended.PropertyName = "Owner";
                pathExtended.PropertyType = MapiPropertyTypeType.String;
                ciSetAT.ExtendedProperty = new ExtendedPropertyType[1];
                ciSetAT.ExtendedProperty[0] = new ExtendedPropertyType();
                ciSetAT.ExtendedProperty[0].ExtendedFieldURI = pathExtended;
                ciSetAT.ExtendedProperty[0].Item = "[email protected]";
                SetItemFieldType set1 = new SetItemFieldType();
                set1.Item = pathExtended;
                set1.Item1 = ciSetAT;
                UpdateItemType request = new UpdateItemType();
                request.ItemChanges = new ItemChangeType[1] { new ItemChangeType() };
                request.ItemChanges[0].Item = itemId;
                request.ItemChanges[0].Updates = new ItemChangeDescriptionType[2];
                request.ItemChanges[0].Updates[0] = setstart;
                request.ItemChanges[0].Updates[1] = set1;

  • Can I share some, not all music, with other users on same iMac?

    Hi,
    I want to be able to share some musice with other users on the same iMac?
    Is it possible to do without having to share everything?
    Thanks, Crankyhead.

    Create a playlist containing the music you want to share. Then select Preferences in iTunes and from there select the Sharing tab. Turn on "Share my library on my local network" then click on "Share selected playlists" and click on the playlist(s) you want to share.

  • How do I share my iPhotos w/other Users on SAME computer?

    I give up! I've looked at Help and everywhere. Tried (Share/)Exporting to other users but it doesn't seem to work. What am I not doing? Help!
    THANKS.

    Hi sherman,
    Here are all the links I have for sharing your iPhoto Library.
    SHARING IPHOTO LIBRARIES
    Sharing libraries between users on the same local network
    You can also share a library on the same machine between users the same way.
    Sharing libraries between users on the same machine...
    -both users must have sharing enabled in their iPhoto Preferences
    -both users must be logged in and have iPhoto running
    -Remember that you can only view the other library. You can't edit the photos or play the saved slideshows or view the made books or burn them to CD or DVD. The books and slideshows will show up as an album. You can play that album as an "on the fly" slideshow. You can drag images from the sharing library to your library in the source column to import them to your library. You can then edit, add to albums, books, slideshow, etc.
    Sharing links from Apple....
    Sharing your photos between computers
    About shared photos
    Turning off photo sharing
    Looking for shared photos
    SHARING ONE IPHOTO LIBRARY BETWEEN USERS ON SAME MACHINE
    You can try one of these three methods:
    1- Use iPhoto Library Manager-the paid version
    The documentation page will give instructions on how it is done.
    2- Sharing one iPhoto library between several users on one machine
    3- Share an iPhoto Library in tiger Using ACL's
    4- I have also read about ShareAlike
    There is no other info on the site about how it works.
    I strongly urge anyone wanting to try any of the methods for sharing one iPhoto Library folder among more than one user to backup all iPhoto Library folders before attemptin anything.
    if you need more help with one of the methods, post back and tell me exactly what you tried (all the steps) and what happens or doesn't happen when you try to share your library.

  • I-tunes installed but cannot open in other users using Windows XP

    I-tunes installed and works with no problem in original user AND worked with a subsequent second user with a second I-Pod. After downloading version 7.5, I-tunes will not open in any other user in Windows XP including the 2nd user. Opening I-Tunes from the Start menu produced an installation / configuration attempt when trying to open in other users with nothing opening at the end. Same with Quicktime. Using the desktop shortcut produces the same installation/ configuration attempt resulting in a "problem with shortcut / fatal error during installation" message. All users are Administrators.
    I tried un-installing / re-installing, installing Quicktime alone, setting up a new user (same thing happens), tried MSCONFIG for any conflicts.
    Any ideas to open I-tunes in other user desktops?

    I have the same problem

Maybe you are looking for

  • Null value handling in LOVs

    Has null value handling improved any in HTMLDB 1.6? If my LOV has "Display null"=Yes (default null value is %null%) and I need to pass in a database NULL to a After Submit process, I need to do add a After Submit computation for each of these LOVs wi

  • My new MacBook Pro does not shut down

    Hello, please help. I have a brand new computer - MacBook pro - 2.2 GHz, Intel Core i7, Mac OS X 10.6.7. When I bought it, I followed the onscreen instructions and "transferred" my old computer, 4 year old MacBook, onto the new one (my accounts, with

  • Loaded files onto screen saver in error

    Hello, I was going to add photos to my screensaver. In error I attached all my files to it. The computer just keeps running and running and trying to load the photos in my screensaver. Any help is appreciated. Tom

  • RAC 11GR2 + VIP

    Hi all, I have a cluster RAC 11GR2 with 2 nodes on a site A (datacenter). I have used 1 IP SCAN et 2 VIP. The scan IP is 10.XXX.X.181 The rac1-vip is 10.XXX.X.165 The rac2-vip is 10.XXX.X.166 I used /etc/hosts file and not the dns for the moment. The

  • Datasource 2LIS_44_POSREC

    Hi All, Anybody has ever used datasource 2LIS_44_POSREC for IS-Retail ? I have just activated this from BI Content. I noticed that this datasouce is part of the LO Cockpit. However, I didn't manage to find anything related to its setup table executio