"WF-USER can only delete this entry" error while deleting entry in tRFC

Hello Experts,
We have a scenario wherein the outbound IDoc from our SAP system consists of lot of IDoc data segments. Becase if this large size, the EAI Middleware is getting out of memory exception while processing it before sending it to the receiving system with an error "Trnasaction XXXXXXXXX rolled back" (Committing is geting failed). And it is not possible from EAI Middleware side to increase the memory. Because of this, other outbound IDocs getting struck in the tRFC (IDoc status  = 03, Data Passed to Port OK) queue and thereby delaying the process.
We would like to delete the entry (TID) of this particular IDoc from the tRFC queue. When we try to do taht, we are getting the error message "WF-BATCH can only delete this entry" which is actually the system Workflow user.
Could anyone suggest me the way to delete the entries? We hav one option where we can that system user name to our user name in "Debug Change'. Becasue of some authorozation problems, we would not be getting that.
Could you please suggest me about any alternative. Appriciate your help. Thanks in advance.
Best regards,
Kishore.

Hello Kishore,
I also encountered the same problem in transaction SWU2.
I could bypass the message in debuging mode only.
I put a breakpoint in report RSARFCRD, and, in debug mode, I skip the following check:
      if sy-lisel+1(12) <> sy-uname.
        message e019 with  sy-lisel+1(12).
      endif.
Best Regards,
Alexandre.

Similar Messages

  • Regedit Permissions -"Access Denied" or "Error while deleting key" EVEN AS ADMIN!

    Anyone tried deleting a registry key in Windows 7?  Got "access denied" or "Error while deleting key"?
    The usual response is, "You need to run regedit as an administrator".  but I *AM* logged in as Administrator, and running regedit as administrator, trying to assign administrator full permissions on that registry key in order to delete it!!  
    Am I mistaken, or isn't Administrator supposed to be able to administer and control all the settings on the computer, in order to set it up for the "Average Joe" user?
    So, under the permissions menu of that key, go to advanced, change the owner from System to Administrator, and try again.  It's no longer saying "access denied", but "Cannot delete xxxxxx. Error while deleting key".
    The scenario: Basically, the wireless has stopped working on a laptop. The device does not show up in Device Manager, but is in the registry, so the normal procedure is to delete the registry entry for the device in HKLM/System/CurrentControlSet (and /ControlSet001) /Enum/PCI    ,then attach the device or restart the computer, it finds the "new" hardware and reinstalls it. Easy!...
    Not with permission restrictions on the administrator account it's not!  So I need to give myself permission, to give myself permission, to do a simple task like delete a single registry key!  Why, Microsoft, why???!!!  Please just make the Administrator account a hidden "God mode" account that can do anything, and make the lives of us techies much easier in the process!  
    /RANT
    Now, where did I put that XP disc?!....

    Hi,
    I explain you:
    Administrator does not mean "you get all rights to do anything." Administrator happens to be an account (or in your case, most likely the Local Administrators group) which by default is given some sensitive privileges like SeDebugPrivilege and
    similar. However, as far as the security subsystem is concerned, it is just an account. (Very much unlike root in
    Unix-like operating systems) If you aren't the owner of the key in question, and your account does not have WRITE_DAC access
    to the registry key in question, then you won't be able to change the access control list on the key in question.
    Try taking ownership first. By default, the local administrators group has SeTakeOwnershipPrivilege,
    which allows taking ownership of any object even without the WRITE_OWNER permission
    being granted by the object's discretionary access control list. Once you are the owner, you should be implicitly granted READ_CONTROL (which
    allows you to read the security descriptor on the object in question), and WRITE_DAC (which
    allows you to write to the DACL on the key in question). (Assuming the OWNER_RIGHTS SID
    isn't in use; that's extremely unlikely)

  • [SOLVED] Error while deleting

    Hey, I have 2 backup partitions (ntfs) but i can't make changes to them. I've tried to delete and copy and paste files with Terminal, Nautilus and Thunar. Tried to solve this as root too. It just doesn't work.
    I get this message:
    Error while deleting.
    There was an error deleting x
    Error removing file: Operation not permitted
    Besides, when I mount any partition (and that includes external devices) trash mysteriously fills itself with a few files from that partition. If you unmount the partition a message appears asking something like "Do you want to empty the trash now?"  The files in the trash will disappear only if you accept that.
    Last edited by z3r0acidk (2010-12-05 20:07:59)

    The wiki will help you out: https://wiki.archlinux.org/index.php/NTFS-3G
    Not sure about the trash thing: what is your DE? Gnome?

  • How do i put a loop round this so the user can only enter a number between

    how do i put a loop round this so that the user can only enter a number between 1 and 3 if a number like 4 is enter it will just say something like retry
    if (CA.trim().equals(ans1)){
    Out = "incorrect";
    else if(CA.trim().equals(ans2)){
    Out = "incorrect";
    else if(CA.trim().equals(ans3)){
    Out = "correct";
    else{
    System.out.println("Enter 1 2 or 3 try doin test again");
    System.out.println(Out);
    byte b[] = Out.getBytes();
    out1.write(b);

    You already know the conditions so here's some pseudocode.
    get input
    while(input is not what I want (between one and three))
            Inform user of improper input and ask for it again
            get new input

  • I got a new Kobe and i am unable to register it on Adobe, when I log in to my account I receive the following error message "you can only authorize this computer with an Adobe ID that hasn't been previously used to authorize any other computer or mobile d

    I got a new Kobo and tried to register it so that I can download books from the public library. When I tried to register my device I received the following message " You can only authorize this computer with an Adobe ID that hasn't been previously used to authorize any other computer or mobile devices. Please try again.

    Please refer to Can't authorize with a previously used Adobe ID

  • The same user can only login once

    Hello,
    I have a problem with my system. I made a system where you must login.
    I use the following code:
    boolean login = false;
    String username= request.getParameter("username");
    String password= request.getParameter("password");
    User user= Usermutations.makeviaUsername(username);
    if (user.getPassword().equals(password) && !password.equals("")) login= true;
    if (login) ReqD = getServletContext().getRequestDispatcher("/Overview.jsp");
    else ReqD = getServletContext().getRequestDispatcher("/False.jsp");
    request.getSession().setAttribute("user",user);
    request.getSession().setAttribute("username",username);
    request.getSession().setAttribute("password",password);
    if (ReqD != null) ReqD.forward(request,response);
    //Clean up resources
    public void destroy()
    Now I want that the same user can only login once. So when a user login with his username and password, no one else can login with that user name and password.
    I don't wan't to put the username in the database and then validate if the user is already logged in, because then the user must logout and not close the webbrowser else the user stays in the system.
    Does anyone knows a solution top this problem.
    Thanks in advance,
    Henk

    So I wan't the database and when the user is logged in
    the name is set in the database. But when the user
    clicks on the X (close button in the browser his
    username must be deleted from the database)You can't tell when the user does that (or perhaps you can sometimes, with difficulty). But even if you could it doesn't solve your problem. Many people keep their browsers open all day, and -- you may find this shocking -- they go to sites other than yours.
    So basically, if you don't provide them with a logout button you can't tell when they "leave" your site. And even if you do provide them with a logout button, they won't necessarily bother to use it. So you're left with waiting until the session expires, and then logging them out. This also means that if they come back to your site while the session is still active, then they are still logged in. This is not an error and you should not treat it as one.
    PC&#178;

  • OB08- Error while deleting entries.

    Hi All,
    I am getting an error while deleting some entires in OB08.
    ERROR MESSAGE: Entry CAD/EUR (28.08.09), exchange rate type EURX cannot be deleted.
    Steps i followed to delete the entires are
    selected some 30 entries and clicked the edit tab and delete function.
    system has given a message box with number of deleted entries 30 after that i clicked SAVE button. Once i clicked the save button i got the above error message.
    Please advice what is error about and how to get rid of this error. Why the error message coming only for this currency combination.
    Thanks in advance.
    Regards,
    VK

    Hi Tarun,
    Thanks for your reply.
    But when i try to delete all the entries one by one i could, but this error comes only when i try as a bunch of entires.
    Please advice why the differences.
    Regards,
    Vimal

  • You can only authorize this computer with an Adobe id that hasn't been previously used to authorize any other computer or mobile device

    When I try to download a library book on my Kobo reader, I keep getting this message. First it tells me to change the computer's authorization to be associated with an Adobe ID. When I click on authorize after logging in, the message keeps telling my "you can only authorize this computer with an Adobe ID that hasn't been previously used to authorize any other computer or mobile device. I have no idea what this means. Help!

    Sometimes ADE gets its registration/activation confused and in a semi-authorized state.
    Uninstalling and reinstalling does not help, and indeed installation can even trigger this state.
    Unfortunately, it often then gives misleading error messages about what is wrong.
    A common incorrect message informs you that the ID is already in use on another computer and cannot be reused.
    Another is  "E_AUTH_NOT_READY"
    This can often be resolved by completely removing any authorization using ctrl-shift-D to the Library screen on ADE (cmd-shift-D if on Mac).
    Restart ADE, and then reauthorize with your (old) Adobe ID.
    In extreme cases on the mac, the following extra step has helped some people.  Navigate to /Users//Library/Application Support/Adobe/Digital Editions and drag the activation.dat file to the trash. If you are using 10.7, see Access hidden user library files | Mac OS 10.7 Lion. http://forums.adobe.com/thread/1265248?tstart=0

  • The external credentials in the SSO database are more recent --- Receiving this error while adding entries to SSO database.

    We are getting this error while adding entries to SSO database. Its working in other environments and failing in only environment. Please advice.
    error MSB4018: The "BizTalk.BuildGenerator.Tasks.SSO.PopulateApplicationProperty" task fa
    iled unexpectedly.\r
    : error MSB4018: System.Runtime.InteropServices.COMException (0xC0002A40): The external cre
    dentials in the SSO database are more recent.\r
     error MSB4018: \r
     error MSB4018:    at Microsoft.BizTalk.SSOClient.Interop.ISSOConfigStore.SetConfigInfo(St
    ring applicationName, String identifier, IPropertyBag properties)\r
     error MSB4
    018:    at BizTalk.BuildGenerator.Tasks.SSO.SSOConfiguration.Write(String appNa
    me, String propName, String propValue)\r
     error MSB4018:    at BizTalk.BuildGenerator.Tasks.SSO.PopulateApplicationProperty.Execute
    ()\r
     error MSB4018:    at Microsoft.Build.BackEnd.TaskExecutionHost.Microsoft.Build.BackEnd.IT
    askExecutionHost.Execute()\r
     error MSB4018:    at Microsoft.Build.BackEnd.TaskBuilder.ExecuteInstantiatedTask(ITaskExe
    cutionHost taskExecutionHost, TaskLoggingContext taskLoggingContext, TaskHost t
    askHost, ItemBucket bucket, TaskExecutionMode howToExecuteTask, Boolean& taskRe
    sult)
    Thanks, Pavan MCTS-Microsoft Biztalk Windows Server 2010

    Hi,
    This error generally arises when your system datetime is not in sync with the Domain Controller datetime. Try following steps:
    1. Check if the Windows Time Service is running on your machine or not. Try restarting this service and then restart host instances. Then run your script.
    2. If this does not works, have a look at this
    link
    Hope this will help.
    HTH,
    Sumit
    Sumit Verma - MCTS BizTalk 2006/2010 - Please indicate "Mark as Answer" or "Mark as Helpful" if this post has answered the question

  • Infopath submit - how to hide - Save as dialog box - You can only save this file to the current site

    HI,
    I have a infopath form. In the submit options, i have used the below:
    submit options -
    sharepoint document library
    Data connection - Sharepoint Library Submit
    Doc library - lib location
    File name: concat("User Info - ", ResourceName, "-", PersonalID)
    Allow overwrite if file exists is checked.
    When I try to save a record, I am getting a popup:
    Save As:
    You can only save this file to the current site
    File Name: textbox
    save location: doc lib.
    save, cancel buttons.
    How to override this save as option(save as option should not be shown to user), and save the file using the file name mentioned?
    Thanks

    Are you clicking "Save" when you're using the form or "Submit"??
    You should be using "Submit" and it will ... submit your form to the document library with the file name you specified.
    To disable the "Save" button, click on "File" then "Form Options". Under the "Filler Features" area you can uncheck the box beside "Save and Save As". Click OK then re-publish your form.

  • A user can only see the public area in a collaboration room

    Hi all,
    We have experienced that a certain user can only see the public area of
    a collaboration room although the user has member rights to see more
    content.
    We have tried to remove the user from the room and add him again. It
    did not help.
    Other users have been added before and after this user without problems.
    What could be wrong with this user?
    Regards,
    Ashwin

    Hi Ashwin,
    Check the roles and the groups by this user..  Is the same of the others users?
    Regards
    Eduardo

  • Can I just limit user can only modify the x value of a point?

    In my effect, I add a point by using PF_ADD_POINT. But I just want user can only modify the x value, is this possible? How can I do it?

    hello shibin.chris! welcome to the forum!
    well, there's no switch you can flip to have such behavior, but you can:
    1. supervise the param, so whenever the user changes the value you can keep
    the X and restore the Y. (won't hold water in case of keyframing or
    expression)
    2. set an expression that would do the same.
    3. check the param at some events (such as the render call), and modify the
    keyframes and values if necessary. (won't handle expressions)
    that's all i can think of.

  • User can only save files to desktop.

    Hello,
    We recently purchased/deployed a MacPro workstation w/Snow Leopard v10.6.8 to a member of our Marketing Dept. The server is bound to our Active Directory domain and the domain user account has local admin rights.
    We copied files over from another Mac. However, this user can only save to his desktop and not directly to other folders on the HDD. He can copy files from the desktop to other folders, but is prompted for admin credentials each time.
    I've located the following article that discusses the "Repair Privileges" utility, but I hesistate to proceeed without being a little more certain.
    Suggestions?
    TIA, Tom W.

    Hey Niel,
    Your suggestion along with this article seems to have been the answer:
    http://support.apple.com/kb/HT2963
    Thanks,
    Tom W.

  • My Ipad is saying it needs to connect to itunes but when i go onto itunes it says it can only be restored but it will delete all my memory. HELP!!

    My Ipad is saying it needs to connect to itunes but when i go onto itunes it says it can only be restored but it will delete all my memory. HELP!!

    No other choice, you have to restore to use your iPad.

  • I am trying to authorise my new macbook air and it won't let me. I try to de-authorise all the other computers and it says I can only do this once a year and have to wait until the 7th Feb. It does not give me an option to authorise this computer

    I am trying to authorise my new macbook air for i-tunes and it won't let me. I try to de-authorise all the other computers and it says I can only do this once a year and have to wait until the 7th Feb. It does not give me an option to authorise this computer

    Always remember to 'de-authorize' you computer when selling or sending for service. If sending for repairs you might not get the same mother board or HD back and some how this counts as an authorized computer against your count.
    MJ

Maybe you are looking for

  • BPM Collect pattern is not coming out  and it is in loop.

    Hi Experts, We have implemented a BPM Collect Time pattern and it was working fine in Dev and QA environments perfectly. Couple of days back we have some server issue in Dev environment and Basis team has done some thing with File Storage. From that

  • The view options won't stay?

    I've used Mac OS for a very long time now and am at the least an intermediate user both in hardware and software but this is perplexing. For whatever reason, whenever a Finder window is opened (disk image just mounted, clicked the Finder icon, opened

  • How to delete image in Mail

    I just noticed that there's a photo from Photo Booth in the top right hand corner of all the new messages I've been sending from Mail. It's likely been there for quite a while and I must have just gotten used to it didn't notice until now that it's a

  • Can only get my daughters iphone 4 to connect to internet at home what are we doing wrong?

    cannot get internet on new iphone 4 anywhere but home.

  • Trouble accessing dynamic XML from API with a CFC

    Please see my example at http://67.199.18.39/test.html and view source (to big to post here). I am returning XML from a dynamic call to an API through a ColdFusion CFC. Search for something generic like Dog. Click Go. I display the XML for you to vie