Message after PCain-Step

Hi specialists,
the process-chain-management makes it possible to send a message after each process-chain-step.
It is possible to send different messagess depending on the RC of the step.
I expected that the configured message is to be sent to the user exactly as I defined it, but I noticed that the msg-body seems to be ignored completely and instead a lot of technical information (=the protocol of the process-chain) is send.
Is there a way to configure the mentioned function in a way that my configured body is sent instead of the log? Or am I forced to use a abap-program to send my message, instead of the "send message after process-step" ?!
Best regards,
Marco
Edited by: Marco Simon on Jun 16, 2009 10:37 AM

Hi,
Please check the following links these might help you 
http://help.sap.com/saphelp_nw04s/helpdata/en/cf/9bdd42cadf2878e10000000a155106/frameset.htm
http://help.sap.com/saphelp_nw04s/helpdata/en/92/5e073c8e56f658e10000000a114084/frameset.htm
http://help.sap.com/saphelp_nw04s/helpdata/en/bb/f0033c128f4a7de10000000a114084/frameset.htm
http://help.sap.com/saphelp_nw04s/helpdata/en/bb/f0033c128f4a7de10000000a114084/frameset.htm
http://help.sap.com/saphelp_nw04s/helpdata/en/bb/f0033c128f4a7de10000000a114084/frameset.htm
Regards,
MADhu

Similar Messages

  • Reuse message after send step in integration process

    Hi all,
    I have a strange problem....
    In my integration process, after some steps, I send a message asynch (in config an FTP receiver). After this I need to reuse the message just sent for a transformation, but the ip dumps. If I delete the send step, everything ends without error!
    Is it possible that I cannot reuse a message after a send step? If so, why?
    Thanks for any help...
    Ilaria

    > ReceiveTransformAToBSendBTransformBToCSendC
    TransformAToB...ok
    But in Step TransformBToC...you have to specify the Interface Mapping..it means
    the Interface mapping should be between Outbound Interface for B and Inbound Interface C.
    So u can store the B Abstract Message in the Container.
    SO your BPM Look like this way...
    <b>StartReceiveTranAtoBSendToBContainerToStoreTheValueofBTranBtoCSendtoC--Stop</b>
    ContainerToStoreTheValueofB store the value of transformed message(that is B )
    THen in TranBtoC (source=message stored in container and Target = C message)
    I do hope it will work as per your requirement.
    Thanks
    Farooq.

  • Sorry, something went wrong --- I got an error message after a new webapp was built and a new site collection was created

    Sorry, something went wrong --- I got an error message after a new webapp was built and a new site collection was created.
    This in SharePoint 2013 Farm.
    What should I do?
    1- I did a DisableLoopBack and set the value to "1".
    For hostname do I have to do : 111.111.111.111 (sample) and serversp2013?
    P.S. I fixed this issue once, long time ago and I forgot how it ... be done.

    Hi,
    For troubleshooting your issue, please take steps as below:
    1.Go to IIS, make sure the web application is actived.
    2.Go to IIS -> Applicaiton Pools, make sure the application pool related to your web application is started.
    Reference:
    http://support.microsoft.com/en-us/kb/926642/en-us
    http://www.techrepublic.com/forums/questions/cannot-browse-created-web-application-site-in-sharepoint-services-30/
    Best Regards,
    Eric
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to process an output message after pick and pack in LM46?

    Hi,
    I've implemented the User Exit to print the HU using LM18, it's working great but no output message is processed (and indeed, the sticker is printed on my own printer instead of the one defined in my Z custom output message).
    I used LM46 to pick and pack the HU, am i missing a step?
    In other words, how to process my custom output message after the pick and pack?
    Is there some code I must add in the LM18 User Exit?

    You know, in a user exit or a BADi you can access any variable of the program you want.
    Just find what which program calls the Exit User, put a break-point in it, and find the variable you need to access.
    Then add this kind code in your Exit :
    DATA: l_var TYPE ....
    FIELD-SYMBOLS: <fs_var>    TYPE ANY.
    ASSIGN ('(PGMNAME)variable') TO <fs_var>.
    IF sy-subrc = 0.
      l_var = <fs_var>.
    ENDIF.
    Same thing for a table :
    DATA: lt_var TYPE TABLE OF....
    FIELD-SYMBOLS: <fs_var>    TYPE ANY.
    ASSIGN ('(PGMNAME)table[]') TO <fs_var>.
    IF sy-subrc = 0.
      lt_var[] = <fs_var>.
    LOOP AT lt_var ASSIGNING ...
    ENDLOOP.
    ENDIF.

  • Sync Send step after transformation step in BPM

    Hi Gurus,
    I have an interface where I am loading the data into an Oracle database and getting the response back (insertcount) from the database. Based on the response, I have to execute a stored procedure in another sync send step.
    I am doing perfectly alright until the transformation step. The sync send step after this step has the following entries.
    Sync interface: MI_LG_SP_INPUT_ABS
    Request Message: sp_lg_rec
    Response Message: sp_lg_snd
    While doing 'check(F7)', I am getting the following error.
    <b>Interface MI_LG_SP_INPUT_ABS for element sp_lg_poc_step2 is not abstract/asynchronous</b>
    The request message for this sync send step is the target message of the transformation step.
    This error is bugging me since 2 days. Please help me with this.
    Thanks
    Kalyan

    Sravya,
    I know what I did now. For my send sync interface which is MI_LG_SP_INPUT_ABS, I have unnecessarily created a container element and which caused this problem. From your post, I rechecked it and found that I don't need a container element for my abs/sync interface as I already have container elements for request and response which are abs/asynch.
    I gave you full points, thinking that you will come for my rescue in the future (just kidding!!!).
    Thanks again,
    Kalyan

  • Introducing a wait after Send step - file write in cc BPM

    Hi
        We have a cc BPM - in which we have a send step - that writes a to a file system - we have a transport acknowledgement requested in this step  - which we receive in runtime - once the message is passed into the Adapter engine ( not after the file is written )
    The requirement is that the next step after this send step should not be started until the file is written to the folder. We have an option of introducing a wait - but do not want to delay the BPM by a full minute ( the least wait time is a minute ) .
    How do we make sure that the step after send step - file write executes only after the file is written to the folder in the send step ?
    Any ideas, solutions, work arounds ?

    we have a transport acknowledgement requested in this step - which we receive in runtime - once the message is passed
    into the Adapter engine ( not after the file is written )
    Transport Ack sends back the ACK when the message is successfully delivered from the Adapter Engine (channel) to the end system.....and not when the message is transferred to Adapter Engine....if there is any error in sending message to AE then the BPM does not need Transport Ack logic to ctach it....only Exception Branch is enough then
    is there any other way of introducing a wait - less than a minute
    The Wait step of BPM cannot go below the minimum limit of 1 minute......if you want to introduce a delay of some seconds then in a mapping use the Thread.sleep logic and check.....this will slow down (stop) the processing....for more info refer:
    Re: Delay in MM possible ?
    Regards,
    Abhishek.

  • CS6 Error message after download

    PS CS6 Error message after Download
    HP Pavilion dv7 Notebook PC
    Intel Core i7-2670QM CPU @2.20 GHz
    64 Bit OS
    Win 7 Home Premium SP1
    Question:  Should I open to use this, or erase and download again?  Wanted you to know as this is in Beta.
    Steps I followed:
    Found the download and installed
    I went through all steps directed by the download wizard, at the end of the
    process I received this message:
    Exit Code: 6
    Please see specific errors and warnings below for troubleshooting. For example,  ERROR: DW050 ...
    -------------------------------------- Summary ------------------------------
    - 0 fatal error(s), 5 error(s), 0 warning(s)
    ----------- Payload: {08D2E121-7F6A-43EB-97FD-629B44903403} Microsoft_VC90_CRT_x86 1.0.0.0 -----------
    ERROR: Error 1935.An error occurred during the installation of assembly component {43CC1B37-B20C-3EBC-9C04-F809989E4FD3}. HRESULT: 0x80070091.
    ERROR: Install MSI payload failed with error: 1603 - Fatal error during installation.
    MSI Error message: Error 1935.An error occurred during the installation of assembly component {43CC1B37-B20C-3EBC-9C04-F809989E4FD3}. HRESULT: 0x80070091.
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Microsoft_VC90_CRT_x86: Install failed
    ERROR: DW050:  - Adobe Mini Bridge CS6: Install failed
    ERROR: DW050:  - Adobe SwitchBoard 2.0: Install failed

    Hi,
    This seems a third party issue.
    Please follow the instructions in the kb article at: kb2.adobe.com/cps/403/kb403969.html
    Regards,
    Ashutosh

  • TS1717 I get the following error message after installing the latest version of itunes via auto update:  "the itunes Library file cannot be saved. An unknown error occurred (-54). Has anyone ever seen this message and anyone have a suggestion what to do?

    I get the following error message after installing the latest version of itunes via auto update:  "the itunes Library file cannot be saved. An unknown error occurred (-54). Has anyone ever seen this message and anyone have a suggestion what to do?

    Hi pholewinski!
    I have a couple of articles for you here that I believe will help you with this issue. The first is an article on advanced troubleshooting, and it can be found here:
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/ts3297
    If following that article's steps doesn't take care of the issue, you can try the things listed in this article, which is about permissions issues in iTunes:
    iTunes: Missing folder or incorrect permissions may prevent authorization
    http://support.apple.com/kb/TS1277
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • Getting itunes has stopped working message after downloading to Windows 8.1

    Getting ITunes has stopped working message after 10 seconds after downloading to Windows 8.1

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    You could also try working through
    TS1717: iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    tt2

  • HT1926 I keep getting the following message after attempting to download and install the latest update for iTunes: missing MSVCR80.dll.  error 7 (windows error 126)

    I keep getting the following message after attempting to download and install the latest update for iTunes: missing MSVCR80.dll.  error 7 (windows error 126). Anyone else having this issue? How do I get iTunes back in working order?

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • Sync send step after transformation step

    Hi Gurus,
    The send step I have after transformation step is not getting the input message. I am splitting the message into 2 messages in the trans step and using one of them as input message in send step. I am getting 'empty container is send to the send step' error.
    Please help me with this problem. I am not sure what I am missing.
    Thanks
    Kalyan

    Kalyan,
    Just adding to the disucussion, you might have  specified a source and 2 target msgs in the transformation step.
    Make sure it is one of the 2 target msgs that you have specified for the send step.
    You can view the 2 target msgs in SXMB_MONI.
    Use Michal's blog for reference.
    /people/michal.krawczyk2/blog/2005/09/16/xi-how-to-test-your-mapping-in-real-life-scenarios
    Regards,
    Jai Shankar

  • Adobe Flash Player wont work after all steps taken, what haven't I done to make it work?

    I tried to play a game I love & I got this message: "To view this page ensure that Adobe Flash Player version 10.0.0 or greater is installed" So I went to your site to update my flash player & hit the "Test Flash Player" button & it came up
    like this^^. I went to the suggestions your site provided & went to Manage add-ons to look for Shockwave Flash Object to enable it:
    You can see that it is enabled by this picture I have provided. So it also asks me to make sure that ActiveX isn't clicked on & so I did:
    As you can see it's turned off & I even tried it the other way where it has the spot checked & it still wont play. So I decided to see if I could reinstall it onto my computer & so in turn I got this message:
    That is the message I got even after trying to delete Flash Player & reinstalling it. Now you can see my frustration with all this. Adobe Flash Player wont work after all steps taken, what haven't I done to make it work? I have a Windows 8.1 Pro, I use Internet Explorer which has the latest version on it, which is Windows Explorer 11 Version: 11.0.9600.17498 & I was also under the understanding that I also had the latest version of Adobe Flash Player on this computer as well. Can someone tell me what to do??

    First, confirm that ActiveX Filtering is configured to allow Flash content:
    https://forums.adobe.com/thread/867968
    Internet Explorer 11 introduces a number of changes both to how the browser identifies itself to remote web servers, and to how it processes JavaScript intended to target behaviors specific to Internet Explorer. Unfortunately, this means that content on some sites will be broken until the content provider changes their site to conform to the new development approach required by modern versions of IE.
    You can try to work around these issues by using Compatibility View:
    http://windows.microsoft.com/en-us/internet-explorer/use-compatibility-view#ie=ie-11
    If that is too inconvenient, using Google Chrome may be a preferable alternative.

  • Error message after executing KKRC- How to define Hierarchy ID ?

    Hi Gurus
    Ours’ is a Chemical Mfg./ Marketing Company. We have ECC 5.0 version implemented in our Company. We  have the Production process orders of different types ( Normal Process order , Reprocess Process order etc.). For the purpose of MIS it is our regular practice to download data in Worksheets & then work upon it ( pivot tables etc.)  &  compile the reports. We have the requirement to have SKU wise ( Finished Goodswise ) summarised compilation of  different type of Variances ( both Qty. , value of input materials, wherever applicable) .
    While browsing the SAP’s BPX community database I have come across the query similar to my requirement . refer thread Product costing - Information system, order summarization  
    Posted: Sep 30, 2007 3:21 AM
    As suggested in the response to that query  I have followed the steps .
    KKRV followed by KKRC . The error message after executing  KKRC reads
    “ No IDs defined for Hierarchy type CO
    Diagnosis No Hierarchy id is defined in customising for the hierarchy type you selected
    Procedure : go in to the customising and define the structure of hierarchy  by means of an appropriate Hierarchy ID. “
    Can some one give me further leads ( i.e. navigation/path and clues for  defining   Hierarchy ID)
    Or
    is there any other way to address the requirement mentioned in opening para.
    With best regards
    Sudheer

    Hi Patrick,
    unfortunately I cannot provide an ad-hoc solution for your nested exception without further investigations.
    Nevertheless I'm very interested to know, why you "gave up" using the Adaptive WS Model in Web Dynpro. What's the problem?
    Perhaps the coding which now requires to create a model instance:
    /** Hook method called to initialize controller. */
    //@@end
    public void wdDoInit() {
      //@@begin wdDoInit()
      // create a new model instance (1)
      EmailAdWSModel model = new EmailAdWSModel();
      // create model objects (2, 3)
      Request_SendEmail requestMO = new Request_SendEmail(model);
      SendEmail emailMO = new SendEmail(model);
      // associate model objects (4)
      requestMO.setSendEmail(emailMO);
      // bind executable model object to context node (5)
      wdContext.nodeRequest_SendEmail().bind(requestMO);
      //@@end
    Regards, Bertram

  • I need to knew were can i put a code that will run after any step.

    i want that a specific code that i wrote will run after any step in the main sequence.
    this code suppose to increment a variable if the step is failed.
    i did not find the place in the VB Operator Interface that executed after each step.
    please tell me where i need to put my code so it will be excuted after any step regardless if the tracing is enabled or disabled.
    this question is about the original source code of TS VB Operator Interface.
    advaced thank's.
    avi gafa, RADA,Israel.

    Avi,
    There is an NI KB article on this titled "How Can I Perform Some Action
    After Every Step Executes" at:
    http://zone.ni.com/devzone/devzoneweb.nsf/opendoc?openagent&06109F4BC56EAC03
    86256838005EB865&cat=629CD2F2758A8D00862567C2005ACE42
    HTH,
    Bob Rafuse
    Etec Inc.
    "avi gafa" wrote in message
    news:[email protected]..
    > i want that a specific code that i wrote will run after any step in
    > the main sequence.
    > this code suppose to increment a variable if the step is failed.
    > i did not find the place in the VB Operator Interface that executed
    > after each step.
    >
    > please tell me where i need to put my code so it will be excuted after
    > any step regardless if the tracing is enabled or disabled.
    >
    > this question is about the o
    riginal source code of TS VB Operator
    > Interface.
    >
    > advaced thank's.
    >
    > avi gafa, RADA,Israel.

  • I am getting this error message after upgrading to iOS5: "iTunes cannot sync apps to the iPad "ray's iPad" because the apps installed on the iPad could not be determined."

    I am getting this error message after upgrading to iOS5: "iTunes cannot sync apps to the iPad "ray's iPad" because the apps installed on the iPad could not be determined."
    I wiped it out and restored from backup but I am still getting the same message.

    I uninstalled and reinstalled iTunes and that fixed it. Here are the specific instructions that I was given.
    ~~~
    Try the following steps:
    1. Go to Microsoft website to fix install and Unistall problems. Click "Run now" from Fix it to remove all iTunes & related installer files:
    http://support.microsoft.com/mats/Program_Install_and_Uninstall
    Be aware that Windows Installer CleanUp Utility will not remove the actual program from your computer. However, it will remove the installation files so that you can start the installation, upgrade, or uninstall over.
    2. You should remove all instances of iTunes and the rest of the components listed below:
    it may be necessary to remove all traces of iTunes, QuickTime, and related software components from your computer before reinstalling iTunes.
    Use the Control Panel to uninstall iTunes and related software components in the following order:
    iTunes
    QuickTime
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support (iTunes 9 or later)
    Follow the instructions from Apple article listed here: http://support.apple.com/kb/HT1923 to remove all components
    3. Reboot your computer. Next, download iTunes from here:http://www.apple.com/itunes/download/ and install from scratch
    ~~~
    Good Luck!
    ~R

Maybe you are looking for