EXECUTE_METHOD_BOR - Application method has processed message 'E'; see long

Hi All,
            I am having the following error in the workflow. Actually the WF was working fine and the past few days i am getting this error.
EXECUTE_METHOD_BOR - Application method has processed message 'E'; see long text
Actually the error occurs in the sub WF, in the method cancel invoice. it has one return variable the l_return but the method is not returning any value. The step is a background step.
The error is
Application method has processed message 'E'; see long text
Message no. SWF_RUN669
Diagnosis
The workflow runtime system has called an application method in a tRFC or background context. A message was processed within this application method. This results in work item processing being terminated in this context.
The processed message has the following parameters:
ID: CRM_ORDER_MISC
Type: E
Number: 106
System ResponseThe workflow runtime system has recognized this status and has caught the message. The status of the active work item is set to 'ERROR'.
Procedure
Identify the message statement in the application method and replace it with the command "Message....Raising". If the method is part of the standard shipment, create an OSS message for the relevant application component.
Procedure for System Administration
Once you have corrected the method, restart the workflow instance concerned by using Workflow administration.
I started the WF from SWPR still the error persists. I dont know whether the error is in the method or in trfc.
Kindly suggest what to do.
Thanks in advance.

Hello !
     Check automatic workflow customizing at SWU3 and authorizations at SU53 transactions.
Regards,
S.Suresh.

Similar Messages

  • What does it mean when you receive a text on your iphone 6 form your own number and the message is duplicated on each side (sent/recieved) and has "verizon message" with a long number at the end of the text, duplicated as well?

    what does it mean when you receive a text on your iphone 6 from your own number and the message is duplicated on each side (sent/received) and has "verizon message" with a long number at the end of the text, duplicated as well?

        Great question stacybrownie! Let's get to the bottom of this so that it's not a cause for concern. When a message is sent to/from your own number, it will display as one sent, one received. This makes it display two messages as you are seeing. Let's clarify the second part of your question. Where do you see "Verizon Message" exactly? What is the long number at the end of the text? When did this start and is it with all text messages or only this instance?
    AdaS_VZW
    Follow us on Twitter at @VZWSupport 

  • My computer shut down as I was downloading photos from my Iphone.  My Iphoto now says "Your photo library is either in use by another application or has become unreadable"  I see the photos still in my computer but how do I get them back in Iphoto?

    Iphoto shut down in the middle of download

    Apply the two fixes below in order as needed:
    Fix #1
    1 - launch iPhoto with the Command+Option keys held down and rebuild the library.
    2 - run Option #4 to rebuild the database.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager and launch.
    2 - click on the Add Library button and select the library you want to add in the selection window..
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the Library ➙ Rebuild Library menu option.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.

  • Processing Messages in WIN32 applications

    Can any one help me ?
    I have developed a multithreaded application for Windows
    using VisualCafe.
    There are two threads in this application.
    The main thread is associated with the main frame
    and it is responsible for user interactions.
    The other thread is used to communicate with hardware;
    it executes commands that require some time to be completed.
    The main thread starts the second thread and
    waits till the second thread is completed :
    Thread mainThread = Thread.currentThread();
    secondThread cfThread = new SecondThread();
    cfThread.start();
    while (! SecondThreadStatus.Finished)
    try
    // ProcessMessages(); !!!!! ?????????
    mainThread.sleep(100);
    catch (InterruptedException e) {
    Class SecondThreadStatus contains static variable Finished
    and is used to check the status of the second thread.
    The problem is that I do not know how to process Windows
    messages. I could not find a procedure like ProcessMessages
    in Java libraries and I do not know how to implement
    ProcessMessages using Java.
    I have developed similar applications using Delphi that work well. The related procedure looks like this :
    procedure WaitForCompletion;
    begin
    while not Finished do begin
    Application.ProcessMessages;
    Sleep(100);
    end;
    end;
    The code for TApplication.ProcessMessages (unit Forms)
    function TApplication.ProcessMessage(var Msg: TMsg): Boolean;
    var
    Handled: Boolean;
    begin
    Result := False;
    if PeekMessage(Msg, 0, 0, 0, PM_REMOVE) then
    begin
    Result := True;
    if Msg.Message <> WM_QUIT then
    begin
    Handled := False;
    if Assigned(FOnMessage) then FOnMessage(Msg, Handled);
    if not IsHintMsg(Msg) and not Handled and
    not IsMDIMsg(Msg) and
    not IsKeyMsg(Msg) and not IsDlgMsg(Msg) then
    begin
    TranslateMessage(Msg);
    DispatchMessage(Msg);
    end;
    end
    else
    FTerminate := True;
    end;
    end;
    procedure TApplication.ProcessMessages;
    var
    Msg: TMsg;
    begin
    while ProcessMessage(Msg) do {loop};
    end;
    Thank you in advance for your advice,
    Dmitri

    I initially used one thread in my application.
    This application may call procedures that
    require some time to be completed;
    these procedures perform hardware related
    commands.Good idea to split these procedures into another thread...
    >
    This application does not respond to user actions
    (pressing buttons etc) after such a procedure
    is called until this procedure is completed.
    The cause of this effect is that application
    does not process messages while this procedure
    is running.What messages are you talking about?
    If you are talking about Windows messages (ie. WM_CLOSE, WM_MINIMIZED, etc) then see my above posts. Java does not use these messages (how could Java be portable across multiple platforms if it did use Windows messages).
    What I think you are saying is that when the intensive tasks are being processed (ie in SecondThread), your application locks up and refuses to respond to clicks, etc.
    What you have done is correct, separate out these tasks into a second worker thread and handle your GUI events in a separate thread as you've shown.
    The following code shows an example. Let me know if it works:
    class MyFrame extends JFrame
    MyRunnable Worker = new MyRunnable();
    public static void main(String[] args)
    MyFrame app = new MyFrame();
    public MyFrame()
    super("Thread Tester");
    this.addWindowListener(new WindowAdapter()
    public void windowClosing(WindowEvent we)
    closeWindow();
    this.setSize(300,200);
    this.show();
    new Thread(Worker).start();
    while(!Worker.isDone())
    Thread.sleep(100); // sleep this thread for 100 ms
    public void closeWindow()
    Worker.stop();
    while(!Worker.isDone()) ; // wait until worker finishes
    // current task
    this.dispose();
    System.exit(0);
    class MyRunnable implements Runnable
    boolean Done = false;
    public boolean isDone() {return Done;}
    boolean Stop = false;
    public void stop() {Stop = true;}
    public void run()
    for(int loop = 0; loop < 1000; loop++)
    if(Stop)
    break;
    // process some long task here...
    Thread.sleep(2000);
    System.out.println("Task # " + loop + " accomplished.");
    Done = true;
    } // void run() method
    } // end class MyRunnable
    } // end class MyFrame
    >
    I allocated the second thread for these hardware
    related procedures in order to enable the main thread
    to process messages.
    But this didn't help. The application does not
    respond to user actions till the second thread is
    stopped.
    I solved this problem in Delphi calling procedure
    ProcessMessages, you may see my code.
    But I do not know what I should do in Java.
    Dmitri

  • Force close message - application App Shop (process com.mobihand.skylight) has stopped unexpectedly

    Just started to get the fore close message "application App Shop (process com.mobihand.skylight) has stopped unexpectedly. I even did a factory reset and still it is showing up. Funny that Lenovos own App Store is causing the force close message. Frustrating....have had the K1 for 3 weeks with no problems and now this everytime i turn on the tablet i get the above message twice.

    I just bought the K1 two weeks ago.  Soon after I received a system update, it said there was an App Store update available and, from then on, I received the error and force close message described above.  I just uninstalled the app and that solved the problem.  Are you suggesting that the app store app is what updates all of the apps I have loaded?  I just thought it was a marketing feature and thought it unnecessary since I could get to the app store another way by going to Apps and Shop.  Could someone clarify its purpose, please?  Thanks!

  • Application Error has occurred in your process Leave of Absence performed

    Hello,
    We have a leave process in SSHR Module.When we create a leave and send it for an approval then it is approved without an error. But when we update the leave and send it again for an approval then We are getting below error.
    Application Error has occurred in your process Leave of Absence performed
    The changes were not applied because ORA-01403: no data found ORA-01403: no data found
    We have removed all user hooks related to leave.Still error is coming. We are using 12.1.3 version.
    Thanks in Advance,
    Regards,
    monika

    Hi Monika,
    One more thing i want to tell that when i am checking the transaction from workflow Admin then its showing an error in below activity.
    "Notify HR About Commit System Error"
    Below error stack has been found in workflow ADMIN
    Workflow Errors:
    Failed Activity Notify HR About Commit System Error
    Activity Type Notice
    Error Name WFNTF_ROLE
    Error Message 3205: '[email protected]' is not a valid role or user name.
    Error Stack Wf_Notification.Send([email protected], HRSSA, HR_EMBED_DEPT_SYSAPPLERR_MSG, WF_ENGINE.CB) Wf_Engine_Util.Notification_Send(HRSSA, 8155, 1296851, HRSSA:HR_EMBED_DEPT_SYSAPPLERR_MSG) Wf_Engine_Util.Notification(HRSSA, 8155, 1296851, RUN)
    please see this
    The Exception ' The changes were not applied because A person type with a system person type EMP must be specified' is Raised While Appoving Changes to Employee Personal Details. [ID 1545950.1]
    Application Error Notification Is Recieved By Requestor After LOA Approval [ID 855141.1]
    ;) AppsmAsti :)
    sharing is caring

  • Photoshop CS6 Application Has Moved Message

    Hello Folks,
    I keep getting an application has moved message when starting Photo Shop CS6
    I have attached a screen grab of the message here. Can anyone tell me what I need to do to keep it from happening each time I start up CS6?
    My OS is OSX Mountain Lion 10.8.4
    I start up CS6 from my normal location which is the CS6 icon that resides in my dock.
    if I select the update button, it has no effect, the application still gives me the same message each time I start up.
    Any help or suggestions would be greatly appreciated.
    Jim

    jasdelta wrote:
    I'm not quite understanding the process of the application being moved, can you clarify?…
    It simply means that the OS or any other application or utility (installer, updater, cleaner tool, etc) cannot find the expected path to the application.
    That can happen through a number of circumstances:
    • the user may have created a subfolder to move the Photoshop application  in a misguided attempt to "organize things", or have moved the whole Photoshop folder elsewhere or the root Applications folder, or renamed them; or
    • the user may have renamed the Hard Disk since Photoshop was installed (say from Macintosh HD to Harry's HardDisk); or
    • any folder or file anywhere in the path to the application has an illegal character in its name, say an apostrophe', asterisk*, slash/, backslash, pound or number sign#, dollar sign$, comma, period, dot, etc.. You should stick to underscores,  numbers and the letters of the English alphabet for naming files and folders); or
    • or the path may appear incomplete because any such folder or file may have become corrupted, damaged or accidentally deleted; or
    • the user originally chose a different install location from the default, or installed the application on a drive other than the boot drive (the one where the OS resides), etc.
    The fact that you found all those files in your (hidden) ~/Library (user or home library) makes me suspect that the application has indeed been moved, simply because all the equivalent folders in my own ~/Library are all totally empty, i.e. there are no files in them.
    The fact that they are still there on your Mac means that the Cleaner Tool was unable to find them and nuke them because it didn't expect them to be there at all.  That to me raises a red flag.
    jasdelta wrote:
     …Can I safely remove all of those old folders before trying a new install? What IYO is the best way to proceed?…
    The advice from me and others all along has been to re-install from scratch from the original media, so I see no reason why you should not nuke all those Adobe folders if you know how to do it safely, without messing with anything else in the hidden user library.
    I have to stress that I'm still on Lion 10.7.5 and have no plans to move to ML 10.8.x on the machines that can run it.

  • Hi, I have a brand new imac which i got today and when I open Iphoto all i get is the error message "Your photo library is either in use by another application or has become unreadable" any ideas? thanks

    Hi, I have a brand new imac which i got today and when I open Iphoto all i get is the error message "Your photo library is either in use by another application or has become unreadable" any ideas? thanks

    Are there photos in the Library? If not then just trash it and launch iphoto. It will make a new one.
    If there are pics in it then Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  

  • I am unable to access my LR5.7 Catalog of my recent holiday. I am running Windows 7 (64Bit) and recently installed and then uninstalled DxO Optics Pro. The error message says it "cannot be opened because another application already has it opened.Quit the

    I am unable to access my LR5.7 Catalog of my recent holiday. I am running Windows 7 (64Bit) and recently installed and then uninstalled DxO Optics Pro. The error message says it "cannot be opened because another application already has it opened.Quit the other copy of Lightroom before trying to launch"  The problem is, that I can only see one copy of LR5 open and cannot locate the ".lrcat.lock" file for the specific catalog I want to open. I have tried re-booting my computer, but this did not work.

    Thanks Geoff. I was finally able to locate the ".lrcat.lock" file relevant to the catalog I want to open. Once I deleted it, LR5 was able to access my images. Problem solved. THANK YOU

  • I have this message appearing "the application finder has unexpectedly quit while trying to restore its windows"... someone PLEASE help

    I have this message appearing "the application finder has unexpectedly quit while trying to restore its windows"...
    So far it doesn't appear to be effecting anything that i can see on my imac BUT it is incredibly annoying and popping up at bad times, and it all happened when my imac automatically updated itself. So annoying. PLEASE help!!!

    Finder crashes are often caused by "Google Drive." If it's installed, I suggest you first check for an update. If that doesn't solve the problem, remove it according to the developer's instructions. You may need to start the computer in safe mode to do so. Back up all data before making any changes.
    If you use Google Drive and don't want to remove it, then try deselecting the option in its preferences to "show status icons." According to reports, that may be enough to stop the crashing.
    Similar cloud-data clients such as "Dolly Drive," "iDrive," "Open Drive," "Transporter Desktop," and others can cause the same problem.

  • When I open iphoto the following message appears 'Your photo library is either in use by another application or has become unreadable'

    when I open iphoto the following message appears 'Your photo library is either in use by another application or has become unreadable'

    Reboot you system, if you have not already done so - this should take care of the "in use by another application" part of the message.
    If the problem persist you will need to create a new library or to repair your library, or to restore it from your backup.
    If you do not yet have any images in your iPhoto Library simply move it to the Trash and hold down the option-key while launching iPhoto again. This will give you the option to create a new iPhoto Library or to pick another one, if you have other libraries.
    To fix your current library, or to restore it from backup, if you already have pictures inside that you need to save, see Terence Devlin's posts here:
    Re: Why do I keep getting asked to repair my iPhoto library?
    Re: when I open iphoto I get an error message that says Your photo library is either in use by another application or has become unreadable,
    Regards
    Léonie

  • HT5622 i have resetting my iphone5 but to download some application... the message is Apple id has been disable...pls assist

    I have resetting my iphone5 but to download some application... the message is Apple id has been disable...pls assist

    Welcome to the user to User Technical Support Forum provided by Apple
    Ir Wan Nazari wrote:
    .. the message is Apple id has been disable...pls assist
    If disabled for Security Reasons... See here  http://support.apple.com/kb/TS2446
    If not for Security reasons...
    To Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • Iphoto doesn t start.  Message received: Your photo library is either in use by another application or has become unreadable

    Iphoto doesn t work.  Message received: Your photo library is either in use by another application or has become unreadable.
    I removed it and I tried several times to reinstall it without success. 

    Some of your user files (not system files) have incorrect permissions or are locked. This procedure will unlock those files and reset their ownership, permissions, and access controls to the default. If you've intentionally set special values for those attributes, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it, but you do need to follow the instructions below.
    Back up all data before proceeding.
    Step 1
    If you have more than one user, and the one in question is not an administrator, then go to Step 2.
    Enter the following command in the Terminal window in the same way as before (triple-click, copy, and paste):
    sudo find ~ $TMPDIR.. -exec chflags -h nouchg,nouappnd,noschg,nosappnd {} + -exec chown -h $UID {} + -exec chmod +rw {} + -exec chmod -h -N {} + -type d -exec chmod -h +x {} + 2>&-
    You'll be prompted for your login password, which won't be displayed when you type it. Type carefully and then press return. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command may take several minutes to run, depending on how many files you have. Wait for a new line ending in a dollar sign ($) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1, if you prefer not to take it, or if it doesn't solve the problem.
    Start up in Recovery mode. When the OS X Utilities screen appears, select
              Utilities ▹ Terminal
    from the menu bar. A Terminal window will open. In that window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not going to reset a password.
    Select your startup volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button
    Select
               ▹ Restart
    from the menu bar.

  • My apple RIP gives this error message" the application ppRIPe has unexpectedly quit"

    MY APPLE RIP GIVES THIS ERROR MESSAGE" the application ppRIPe has unexpectedly quit"

    Thanks.
    I should have mentioned that I have already done the Resolving Permissions as outline on Apple Support pages, but, I went ahead and did the complete sequence as shown on Dr. Smokes.
    I decided to stop beating a dead horse and did an Erase and Install of 10.2 again since I did not have anything on there yet. So far, everything is working perfectly. I am doing the Software Updates called for one by one to see if any of those caused the problem.
    The only thing I did other than doing all of the updates after the install was to install OS 9.2 for my Classic Environment software and I also installed an HP PSC 1315v All-In-One scanner/printer. I cannot imagine that would have done anything.
    I did have some strange issues with Where in the USA is Carmen Sandiego and The Star Fleet Technical manual so I may stay away from them unless I start in OS 9 if none of the other updates cause any issues.
    Thanks. BTW, How should I rate your answer? I know that it did not solve my problem, but, it is likely that something else I did whacked something.
    I'll update when I know more.

  • I was trying to move iphoto library to my external hardrive, realised it was incompatible with Mac.  The iphoto will not open now, message is "Iphoto library is either in use by another application or has become unreadable".  I have read other posts.

    Hi,
    I was trying to save a copy of my iphoto library by copying images to my external harddrive.  I wasn't sure how to do it, realised the hard drive is not compatible. Now the iphoto library wont open and reads "iphoto library is either in use by another application or has become unreadable".
    I have tried to use options command and click on iphoto then rebuild yet nothing happens and same error message occurs.
    I have gone to  my personal drive, desktop, iphoto library, and found file Albumdata.xml and when i click on it, there is a lot of text in it, i am assuming these are all my photos.
    I have tried clicking and dragging this file to iphoto app and it doesn't work, as the same error comes up in iphoto being in use or unreadable....
    What am I meant to do with albumdata.xml file and how do I reopen Iphoto from here on in?
    Please help as I am not technically minded and still trying to understand how to use the Macbook at all as I am used to Microsoft.
    Thank you very much,
    KS

    Rule Number One - NEVER go directly uinto the iPhoto library - there are no user servicable parts in it and making any change no matter how small can corrupt your library and cause data or photo loss
    Exactly how were you trying to save a copy of your iPhoto library?
    Albumdata.xml does not contain your photos - and again NEVER make any changes to the content of the iPhoto library - no dragging - no changes - never go into the library
    We need to know exactly what you did
    And probalby the easiest solution is to load your backup from before you messed things up
    For reference after you get things working
    Moving the iPhoto library is safe and simple - quit iPhoto and drag the iPhoto library intact as a single entity to the external drive - depress the option key and launch iPhoto using the "select library" option to point to the new location on the external drive - fully test it and then trash the old library on the internal drive (test one more time prior to emptying the trash)
    And be sure that the External drive is formatted Mac OS extended (journaled) (iPhoto does not work with drives with other formats) and that it is always available prior to launching iPhoto
    And backup soon and often - having your iPhoto library on an external drive is not a backup and if you are using Time Machine you need to check and be sure that TM is backing up your external drive
    LN

Maybe you are looking for