Locks  when I try to do two entrysheet in the same call.

Hi
I call a FM for creating a entrysheet (BAPI_ENTRYSHEET_CREATE). I have to make them at purchase order item level. So I call the BAPI once each item.
With the first call, it works perfectly. But in the second when I execute I get the error "user xxxx already processing purchase order"
I have tried with
1.- BAPI TRANSACTIONCOMMIT 
2.- COMMIT & WORK
3.- DEQUEUE (EMEKKOS, EMEKKOE, EMEKPOE)
I have traced and only appear these locks and some blocks about budget (could be those locks)
I only can see it trying with a WAIT sentence.
Does anybody know how I can avoid that lock situation??
Thanks again
Regards

Hi,
thankyou very much indeed
I have tried both of DEQUEUE_ALL (also ENQUEUE_DELETE) and the SET UPDATE TASK LOCAL.
In my case the last one solved the problem
Thanks again
King Regards

Similar Messages

  • My iMovie doesn't work. When I open it nothing comes up so I force quit but then it closes, and a message comes up to send to apple. When I try to reopen it, it does the same thing!

    Please hep me this is super aggrivating and I have no clue what to do!

    Hello BellzJay,
    Thank you for your question. It sounds like your iMovie window is not appearing when you open the program and force quitting it then reopening it does the same thing. I would recommend these staps in particluar to try from the following article:
    iMovie: How to troubleshoot "Application Unexpectedly Quit" messages
    http://support.apple.com/kb/ht3143
    1) Verify your software is up to date by running Software Update.
    The updates necessary to resolve the issue are those relating to QuickTime, iLife, iMovie and Mac OS X. If any of these updates are available, install the updates. After you install the updates, run Software Update again to verify there are no more updates for that application available.
    2) Disable non-essential QuickTime components.
    Navigate to /Library/QuickTime/ for a list of components currently installed.
    Temporarily disable any components that are not in the list below. You can disable the components by moving them to the Desktop or another folder outside of the /Library/QuickTime/ folder.
    Open iMovie and see if the issue is resolved. If iMovie no longer unexpectedly quits, check to see if an updated component is available, or contact the developer of the component for further recommendations.
    iMovie uses the following components, and should be left in the QuickTime folder:
    AppleIntermediateCodec.component
    AppleMPEG2Codec.component
    Note: There may also be a similar folder at ~/Library/QuickTime/ depending on the components you have installed. If this folder is available on your Mac, remove any components as instructed in step 2. Both of these locations hold QuickTime components. The components help you encode or decode different types of multimedia content.
    5) Run Apple Hardware Test and Disk Utility
    If you are experiencing unexpected behavior in other applications, check your hardware by using Apple Hardware Test. You can also test your hard disks using the Verify and Repair functions of Disk Utility.
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • When i search through google and the page opens, it freezes showing that it is transfering. Also when i try to access my yahoo mail the same thing happens. I will uninstall Ver4 beta. and re install 3.6 until u guys find solution to this

    I clicked on yahoo mail, it opened the page but then freezes showing that it it still going on.
    Same thing happens when google page open for search.

    Don't have McAfee, Norton, AVG, actually nothing else running. Had Firefox 4 installed on 5 computers at home and 2 at work. Completely separate ISP's at home and work. XP and WIN7 computers. Yahoo mail freezes and I tried the old Yahoo mail, the new Yahoo mail, and the Beta Yahoo mail. The only way I can sometimes get mail to open is to right-click and open in a new tab or window. I uninstalled all of the computers running Firefox 4 and went back to 3.6.16. Just too buggy and the look of it is strange.

  • Generat two signals at the same time and reading voltage

    Hii
    i have try to generate two signals at the same time and read voltage from another port on the board(not have to be at the same time), i have not alot of expriens in labview
    and i based my code of example(http://zone.ni.com/devzone/cda/epd/p/id/5197) from yours site and try to suit to my needs
    now my problem is when i generat the 2 signals(that work perfect) i canot read voltage from another port on my CB-68LP
    i can not find the problem  and make it over i hope there is away to figer out and fix it.
    i have two cards 6229, and two CB-68LP board.
    labview 8.5.
    my code is look like this - http://img142.imageshack.us/my.php?image=scrennshot2no2.png
    (this works perfect).
    and this is my code after suit to my need - http://img183.imageshack.us/my.php?image=scrennshotfl5.png,there is  error exception at  the right side.
    the exception-
    Possible reason(s):
    Specified route cannot be satisfied, because it requires resources that are currently in use by another route.
    Property: RefClk.Src
    Source Device: Dev1
    Source Terminal: 10MHzRefClock
    Required Resources in Use by
    Task Name: _unnamedTask<0>
    Source Device: Dev1
    Source Terminal: None
    Destination Device: Dev1
    Destination Terminal: RefClock
    Task Name: _unnamedTask<1>
    eyal

    sorry...
    The AO tasks is very important they will be synchronize ,it is very importent the two tasks will start at the same time
    and after it run at synchronize mode i will need to make reading of voltage
    i gust try to make simulation of machin (i give that machin AO and reading from it voltage that all)
    first of all i make the two signals(synchronize signals).
    and after it i will need to reading voltage.
    i can make two signals synchronize together.
    i can make reading voltage
    but i can't make two signals synchronize together with reading voltage
    it throw to me this error message.
    i am looking for away to figer this out.
    thank's for any help 
    eyal
    Attachments:
    test11.vi ‏130 KB

  • Two tables on the same page. Is it possible?

    Hi all,
    I followed the multi-slect sample in Winston's blog and everything is working. However, when I tried to put two tables on the same page, the selections are all messed up. When I looked at the code again I realized the line
    RowKey rowKey = (RowKey)getValue("#{currentRow.tableRow}");
    in the setSelected(Object object) method.
    In the case that there are more than one tables on one page, how does the code which table it is refering to? Or how the code should be different so we can have multi tables with selectable rows on the same page? Thnx.

    Thanks. But how do you tie the TableSelectPhaseListeners to their respected tables.
    This is Winston's code for row select (1 table)
    private TableSelectPhaseListener tablePhaseListener = new TableSelectPhaseListener();
    public void setSelected(Object object) {
    RowKey rowKey = (RowKey)getValue("#{currentRow.tableRow}");
    if (rowKey != null) {
    tablePhaseListener.setSelected(rowKey, object);
    public Object getSelected(){
    RowKey rowKey = (RowKey)getValue("#{currentRow.tableRow}");
    return tablePhaseListener.getSelected(rowKey);
    public Object getSelectedValue() {
    RowKey rowKey = (RowKey)getValue("#{currentRow.tableRow}");
    return (rowKey != null) ? rowKey.getRowId() : null;
    public boolean getSelectedState() {
    RowKey rowKey = (RowKey)getValue("#{currentRow.tableRow}");
    return tablePhaseListener.isSelected(rowKey);
    For two tables. Do I just repeat the code like this?
    private TableSelectPhaseListener tablePhaseListener1 = new TableSelectPhaseListener();
    public void setSelected1(Object object) {
    RowKey rowKey = (RowKey)getValue("#{currentRow.tableRow}");
    if (rowKey != null) {
    tablePhaseListener1.setSelected(rowKey, object);
    public Object getSelected1(){
    RowKey rowKey = (RowKey)getValue("#{currentRow.tableRow}");
    return tablePhaseListener1.getSelected(rowKey);
    public Object getSelectedValue1() {
    RowKey rowKey = (RowKey)getValue("#{currentRow.tableRow}");
    return (rowKey != null) ? rowKey.getRowId() : null;
    public boolean getSelectedState1() {
    RowKey rowKey = (RowKey)getValue("#{currentRow.tableRow}");
    return tablePhaseListener1.isSelected(rowKey);
    private TableSelectPhaseListener tablePhaseListener2 = new TableSelectPhaseListener();
    public void setSelected2(Object object) {
    RowKey rowKey = (RowKey)getValue("#{currentRow.tableRow}");
    if (rowKey != null) {
    tablePhaseListener2.setSelected(rowKey, object);
    public Object getSelected()2{
    RowKey rowKey = (RowKey)getValue("#{currentRow.tableRow}");
    return tablePhaseListener2.getSelected(rowKey);
    public Object getSelectedValue2() {
    RowKey rowKey = (RowKey)getValue("#{currentRow.tableRow}");
    return (rowKey != null) ? rowKey.getRowId() : null;
    public boolean getSelectedState2() {
    RowKey rowKey = (RowKey)getValue("#{currentRow.tableRow}");
    return tablePhaseListener2.isSelected(rowKey);
    Edited by: Thomas5 on Jan 18, 2008 5:28 AM

  • Cannot connect two computers to the same game server HELP!

    I have a Linksys WRT54G Router.  I have two computers and I want to be able to use them on the same gaming server.  Unfortunately, the game only have one port, so I can only port forward one of my computers.  How can I configure my router to have two external IP addresses to the server so it won't kick one of my computers out.  Thanks!

    Hi,
    I am in a gaming community and many members have a Linksys at home (but I don't know which kind exactly). Many of us try to connect two computers to the same server (many have a family). It seems it is a common problem that no one can connect two computers to the same game server.
    I have a BEFSR41 V3 Firmware version 1.04.8
    I use fixed IP address and no connectivity problem on Internet.
    I have win XP SP2 on both computer.
    I am using a DSL modem
    I can connect the two computers to two different game servers at same time, but not the same server. Default port for this game is the same for all servers I use. I tried with both port forwarding enabled (in that case one PCs can connect the other not) or not (in the second case, whenever the second PC connects, the first one lose his connection to the server, no mater the order I try to connect my PCs).
    Now the weird thing is that one member in my community just decided to throw away his Linksys router and he bought another brand (which I won't name to remains politically correct). Now, without changing anything in his PCs or his connection type, he can now play with two PC on the same server.
    I am seriously thinking doing the same move. Since more and more game are now using Internet (and servers that controls piracy, $$) and family want to play together, not being able to connect two PCs on the same game server makes Linksys in bad situation from marketing point of view.
    For example, in my gaming communtity, we now all know that Linksys can't handle two PC on same server, but other brand can...
    Thank you in advance for your help.

  • TS2518 Help, I had aperture open and working on a image and did not have a battery in and bumped the power off. As a result it will not open my master, it is locked. when I try to open that Library  it says There was an error opening the database for the

    Help, I had aperture open and working on a image and did not have a battery in and bumped the power off. As a result it will not open my master, it is locked. when I try to open that Library  it says There was an error opening the database for the library. I have tried every thing. I updated the other libr but now it will not open the main to update. What do I do?

    Try starting Aperture with the command and option keys held down.  You'll get 3 options.
    Try each, starting at the top, in order, checking after each to see if it fixes the issue.

  • HT4539 I'm having problems with my iPad I downloaded I downloaded pro for two dollars and now when I try to download other apps in the app store it wAnts to kno my personal card info on free items and won't let me download items I already erase the I down

    I'm having problems with my iPad I downloaded I downloaded pro for two dollars and now when I try to download other apps in the app store it wAnts to kno my personal card info on free items and won't let me download items I already erase the I downloadeder pro but I don't kno way to do?

    Also, when I go on to safari, another alert pops up that safari cannot verify the identity of the website, anything that I type in to as common as google.com. It gives me 3 options to either cancel, look at details, and continue. I've looked at the details of the website of Google and it is legitimate the site. Any help?

  • When I try to combine two pdf's, it asks for a permission password and says the documents are protected; however, I didn't put any protection/security in the documents.  I assume it is a default security under the enhanced security settings of the Acrobat

    When I try to combine two pdf's, it asks for a permission password and says the documents are protected; however, I didn't put any protection/security in the documents.  I assume it is a default security under the enhanced security settings of the Acrobat Pro XI which I recently purchased.

    Acrobat (Pro or Standard) does not apply a "default" protection. It appears that someone or some other process has applied protection.
    Be well...

  • TS1702 When I try to update two certain apps in the App Store, I get a message that says 'cannot connect to iTunes store'. Any idea how to get these apps to update?

    When I try to update two certain apps in the App Store, I get a message that says 'cannot connect to iTunes store'. Any idea how to get these apps to update?

    Check that the apps are still available in the store

  • How do I get rid of doubles of photos sent by an iPhone? When I try to trash them, I get the message 'locked' Thank you.

    how do I get rid of doubles of photos sent by an iPhone? When I try to trash them, I get the message 'locked' Thank you.

    Hi
    Thank you for the reply.
    No I have not deleted anything, this all happened automatically when the trial period ended.
    Other than an old version of Photoshop (version 7, for which I do have a serial number, I don't have any other Adobe software - just the reader which is now not working)
    I was trialling Dreamwever but couldn't get started with it so am paying someone else to set up the website using Wordpress.
    David

  • My Iphone Is Locked, When I Try Sync With Itunes ,The App Ask Me For The Owner Account which Is Erased Somebody Can Help Me?

    My Iphone Is Locked, When I Try Sync With Itunes ,The App Ask Me For The Owner Account which Is Erased Somebody Can Help Me?
    I Want To Sync My Music But I Cant, Can Somebody Help Me ? Thanks

    Look, Idk If Is Blocked Or Something But When I Restored The Phone I Mean Factory, First Says That The phone Need A Sim Card,then An Icloud Account  And Then This " This Phone Was Registered With An Apple Account,So I Know The Email and The Password, when i Try To Log In Its Says Password or EMail Incorrect so I Asked My Friend,Because I Didn't Buy it From An Apple Store Or Somethin Like That, So MY Friend Told Me That He Erased The Account or He desactivated I Need Help Seriously :s

  • My 3 GS has been working fine for the last two years or so but recently it has been getting "stuck" frequently when I try to do various things - answer a phone call, switch screens, go to my mail, etc.

    My 3 GS has been working fine for the last two years or so but recently it has been getting "stuck" frequently when I try to do various things - answer a phone call, switch screens, go to my mail, etc.

    Hello binbingogoABC,
    Shopping on BestBuy.com should be easy and fun and not fraught with the kind of trouble that you describe. I regret very much that this has been your experience.
    Using the information you provided when you signed up for Best Buy Unboxed I was able to locate your cancelled orders. I have requested more information from my back-office partners. As soon as I have additional details about your situation, I will reply again to this message. In the interim, I'm sorry that I must impose upon your patience.
    I'm very grateful that you wrote to us with your concerns.
    Sincerely,

  • Hi, I just got my Iphone 5s when I open my camera when my phone is lock te icons of the flash and the reversing camera is there, but when I try to open my camera from the apps camera the icons of the flash, the reversing camera is not there anymore?

    Hi, I just got my Iphone 5s when I open my camera when my phone is lock te icons of the flash and the reversing camera is there, but when I try to open my camera from the apps camera the icons of the flash, the reversing camera is not there anymore?

    Have you tried restarting or resetting your iPhone?
    Restart: Press On/Off button until the Slide to Power Off slider appears, select Slide to Power Off and, after the iPhone shuts down, then press the On/Off button until the Apple logo appears.
    Reset: Press the Home and On/Off buttons at the same time and hold them until the Apple logo appears (about 10 seconds).

  • I'm trying to install iTunes on my computer running Windows 7 Home Premium.. I'm not sure if iTunes is compatible with it because when I try to install it, it says the installation is complete but it says there was an error so I can't get it! Please help!

    Hellooo Apple Community!
    I'm trying to install iTunes on my computer running Windows 7 Home Premium. I'm not sure if iTunes is compatible with my computer operating system because when I try to install it, it says the installation is completed but it says there was an error so it won't let me get itunes! Can someone please tell me if iTunes can be downloaded and installed on "Windows 7 Home Premium" and if so, how?! I need iTunes asap, I have an iphone 4 running ios 6.1.3. Please get back to mee!!
    Thankyou thankyou thankyou!
    Natalie.

    I just tried running the Lenovo Hard Drive Quick Test both in normal mode and in safe mode.  Both times it indicated a failed read test on the HDD. The last two tests also failed.  I forget what those tests were called.
    I am really beginning to think I have a bad HDD and the problem just happens to be in the reserved partition where my factory system software resides.

Maybe you are looking for

  • Looking for Mac Software to run a DJ Company.

    I need some assistance for a software package that will allow me to book gigs for my DJ company. The list is long: - create a contract on my Mac (and would be a + if you could do all of the things on an iPhone) - without retyping all the customers in

  • Adobe Photoshop CC Crashing On Startup

    I just downloaded Photoshop CC today, and every time I try to open it, it loads, loads, 2 seconds after it opens up, it crashes. Now, I did find a way to bypass this, I don't know what key combination I did but it said open file, and as I uploaded a

  • My super simple ip checking script

    i have a small home network with a PC running arch that acts as a NAT router; in the near future i am planning on setting up VPN access on this arch box. i would assume that it is imperative to know the external IP address of the router in order to c

  • ActionScript 3 Error #2044 & Error #2048

    How do I stop this error from happening? When I use the same source code in a WindowedApplication rather than an Application, (which is where I get this error), I do not get the error (with an AIR app). Error #2044: Unhandled securityError:. text=Err

  • ITunes library consolidation problem

    Hi, I'm stuck on this one.  I used to have a large iTunes library that I stored on a pocket drive external to my laptop.  I've recently cut it down from 150Gb to about 113Gb, which I figure I can copy back on to my laptop (130Gb free space).  However