Send Message from Process Chain Step without Process Log

We send a mail message, depending on the success or failure of the process chain step, to user list.
When the message is sent not only custom message but also the status information and the process log are sent.
Our users are only interested about the result of the chain and they don' t want to view all technical information.
Is it possible to send message without process log?
Regards

Hi,
Take 2 process(red and green line) from each of the process in the process Chain, one is for sucessfull and other is for failure and at the end of the proces chain,  just put all failure process to the OR and have add a ABAP Program (with Not Sucessfull) and then just put all sucessfull process to the AND and have add a ABAP Program (with Sucessfull) .
This wil send the mail to the users, when ever there is failure in PC any where, or sends a mail ..if the process chain completes sucessfully.
If you want only add the send of mail option at the end of the process chain, we can just add 2 process (red and green line) and have same flow as above. so that.. it will only sends mail..when there is failure or sucessfull of the process chian.
Hope it helps ......

Similar Messages

  • Send message from process chains

    Hello,
    I am trying to setup the send message thing in process chains, when I create my variant for that. I see two buttons edit document, I guess there you can add the text you want to see in the email (correct me if i am wrong here). other button is what I am trying to configure. maintain recipient list. I want to send email to their inbox ( which will be lets say the companyemail they use or any other for instance yahoo) whats the recipient type we should use there? and in the cloumn for recipient do we have to add like email or just the name ? Can someone please xplain me steps how I can get this working. DO we need any setup from Basis team in this?
    Thanks a lot

    hi K M,
    you can right click the process type and 'create message'. use recipient type internet mail for yahoo something, you have to add like email [email protected]
    yes, you will need basis team to setup the sapconnect.
    (SCOT).
    hope this helps.

  • Why won't imessage send messages from my phone number? It jut uses my  email  address.

    Why won't I message send messages from my number? It keeps using my email address. I have signed in and out of my apple id several times but no luck, I have also restored my phone. Imessage says it is waiting for activation could this be the problem?

    Hi there,
    You may want to take a troubleshooting steps found in the article below.
    iOS: Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/ts4268
    -Griff W.

  • Why is my iphone sending messages from my email and not my number?

    My phone will send messages from my email rather than my number. I have gone to the settings to switch it to send just from my number. When i do that, it does not send. What do i do to fix this problem!?

    Hello therealdeal333,
    Thank you for participating in the Apple Support Communities.
    It sounds like you're only able to send iMessages using your Apple ID (email address) on your iPhone. If you're not able to send iMessages using your phone number, first try signing out of iMessage and FaceTime on your iPhone:
    Go to Settings > Messages > Send & Receive, tap your Apple ID, then tap Sign Out.
    Go to Settings > FaceTime, tap your Apple ID, then tap Sign Out.
    If you send iMessages from other devices (such as a Mac or iPad), sign out of those as well.
    Then sign back in on your iPhone:
    On your iPhone first, sign back in to iMessage and Facetime.
    Sign back in to iMessage and Facetime on your other devices (if necessary.)
    You can find the steps I quoted above, as well as more troubleshooting help, at this link:
    If you can't send or receive messages on your iPhone, iPad, or iPod touch - Apple Support
    Best Regards,
    Jeremy

  • How to send message from multiline container to same webservice or bus. sys

    Hi All,
    I want to send message from multiline container to a syn web service sequentially.
    I am getting that multiline container after a transformations step (1: n mapping).
    where i dont known what will be the value for n (number of message in multiline container). This will vary; depend upon input message to BPM.
    Scenario is like this.
    1. Receive step
    2. Transfromation to 1: n
    3. Want to send message from multiline container to a web service (business service),default loop and block step doesn’t give desirable result.
    any help will be appreciable
    Regards,
    Adish

    Adish Jain wrote:>
    > where as, if I will use block, it will send the same message to multiple receivers which are present in multiline receiver container. So need to think in different manner.
    Not necessarily.
    When you use block step in ForEach mode, you can select the container variable from:
    - a receiver container;
    - an interface container;
    The line element can then be either a receiver or an interface.
    The problem is that for this to work, the interfaces need to be async (since they are to be used as containers) and hence you won't be able to make your scenario work.
    But again, explain why your scenario with loop step didn't work.
    The only gap here is how to determine the number of loops (defining the counter variable value). But that can be easily solved if you include a new message with occurrence 1 as a target message of your mapping and as a container in your bpm.
    This new message needs only 1 single field, that should be filled with the number of messages you've created in the mapping (you could use count standard function, f.ex.).
    In your bpm, make sure to pass this fields value into the counter container right after your transformation step.
    Regards,
    Henrique.

  • Why when I send messages from my iphone to other iphones, they come up green and not blue? I have all the settings on for I message, but my number comes up grey and not Black? Help someone please!

    Why when I send messages from my iPhone to other IPhones, they come up green and not blue? I have all the settings on for I message b ut my number comes up grey and not black? Please someone help!

    Hi evan191,
    Thanks for using Apple Support Communities.  This article has some steps you can try if your messages aren't sending as iMessages:
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/ts2755
    If you still can't send or receive iMessages
    Ensure that iMessage is turned on in Settings > Messages.
    To send and receive iMessages, your device must have a valid cellular or Wi-Fi data connection.
    iPhone: Troubleshooting Cellular data
    iOS: Troubleshooting Wi-Fi networks and connections
    iMessage registration validates your Apple ID for use with iMessage. If you are unable to activate iMessage, follow this article.
    If an iMessage cannot be sent, it will be resent using SMS or MMS, depending on the content. You can turn this behavior on or off in Settings > Messages > Send As SMS. Carrier messaging rates may apply.
    Verify that the Apple ID or phone number is listed in Settings > Messages > Send & Receive.
    Cheers,
    - Ari

  • Sending message from PL/SQL procedure to form

    Hello Friends,
    How can I send messages from PL/SQL procedure to Form ?
    Ultimate target is catching progress of PL/SQL procedure from
    form. I heard about DBMS_PIPe but not sure,.
    Adi

    Hello,
    Yeah , I got the solution using DBMS_PIPE function,I
    followed following steps.
    1. Pipe is created. see below procedure.
    create or replace procedure proc_testpipe as
         v_pipe_integer          integer;
         v_pipe_message          integer;
    begin
         v_pipe_integer := DBMS_PIPE.Create_Pipe('adipipe');
         dbms_pipe.pack_message('Hello Adinath Kamode,Message
         from Pipe');
         v_pipe_message := dbms_Pipe.Send_message('adipipe');
         end;
    end;
    2. then I created one Function which will obtain message from
    Pipe and
    will return value to form.
    create or replace function proc_callpipe return varchar2 as
    v_msg          integer;
    v_rem          integer;
    v_message          varchar2(500);
    begin
    v_msg:=dbms_pipe.receive_message('adipipe');
    dbms_pipe.unpack_message(v_message);
    dbms_pipe.purge('adipipe');
    v_rem := dbms_pipe.remove_pipe('adipipe');
    return(v_message);
    end;
    3. Last I called this function from form.
    Cheers .. !
    Adi

  • TS2755 Hi all, I bought one iphone and 3 ipads, i set up all on one apple ID. Now i have a problem when using messages: when sending message from one device it appears again on screen from the other 3 devices. I need help of how to set up messages on each

    Hi all, I bought one iphone and 3 ipads, i set up all on one apple ID. Now i have a problem when using messages: when sending message from one device it appears again on screen from the other 3 devices. I need help on how to set up messages on each device separately and to start using messages app on each device independently. Thanks

    search google for "iphone remove picture from contact"

  • Mail with multiple gmail accounts sending messages from wrong email, other than the one i select

    mail with multiple gmail accounts sending messages from wrong email, other than the one i select:
    i'm using mail on osx 10.7 with multiple gmail accounts. when i create an email, i check to be sure i'm sending/replying from the correct account. after i send it, somehow it actually sends it from a different account, other than the one i've selected "from." this is evidenced by the reply email i receive. how can i fix this?
    in preferences, i have "send new messages from : account of selected mailbox"

    From the Mail menu bar, select
              Mail ▹ Preferences...
    The Mail preference dialog opens. Select the Composing tab from the row of icons at the top. From the menu labeled
              Send new messages from:
    choose
              Account of selected mailbox
    Note that this setting may have no effect if you start a new message while a VIP or smart mailbox is selected in the mailbox list. Those are saved searches, not actual mailboxes.
    If the problem remains, select the Accounts tab in the preference dialog, then select the affected account in the list on the left.
    In the Account Information pane, select the correct server in the menu labeled
              Outgoing Mail Server (SMTP)
    If there's only one server in the menu, select
              Edit SMTP Server List...
    and add a new server with the correct settings. If you're not sure how to do that, try the Mail Settings Lookup.
    Another possibility is that the wrong card in your address book is selected as yours. Select your card in the Contacts application. Then select
              Card ▹ Make This My Card
    from the menu bar.

  • My iphone is sending messages from icloud and my phone number is not listed in the icloud settings now, just my e-mail address

    My icloud used to have my phone number as an option to send messages from but now it is gone and only my e-mail address is there.  This never happened prior to downloading the ios 7 update.

    if you turn imessage off then restart your phone turn imessage back on it worked for me

  • I have a dll file, i want to send messages from this to the device ,how can i do it in labview

    Hi,
    I am a new user of labview.
    I got Vector Card, DUT, DC Power supply and .dll file. Hoe can i connect dll file and hoe to senf the information to the device,
     i want to send/receive a message to that device . and measure temperature , humidity of the device. is any one can help?
    i have a .dll file, i want to send messages from this file to the testing device ,how can i do it in labview?

    Dear Sandy,
    How are your DUT, Vector Card and your PC connected?
    What vector card is this?
    There are a huge amount of Knowledge base articles that you can access from www.ni.com.  Simply go to the website and do a search on dll, etc.
    There are also a lot of example problems shipped with LabVIEW that will be very helpful for you to learn from and to modify to meet your needs.  Go to File»Find Example ....
    There are LabVIEW classes taught locally as well that are very helpful.  If you're interested I can arrange for you to receive an email with info about it.
    Sincerely,
    Sammy Z.  

  • Is it possible to send message from R/3 system to itself?

    HI All.
      I want to send message from R/3 to PI (anyhow, virtual receiver or smb else), make in PI some transformation and return this new message to R/3. (I don't want to do this transform in R/3, because in PI its easier and universally)
    Is it possible? How?
    Regards,
    Andrey

    Thanks for answers.
    R3 <-> PI <-> R3 scenario is not a trouble. But not in this case.
    The main task:
    User have a table with data. In this table there are 2 fields: INDEX, SUM. He want to take a xml file. I have XSD for this file.
    I have to assign summ value (SUM) to corresponding tag depend on characteristic name (INDEX).
    It  looks like DMEE, but in DME formats has own structure and it is differ from my XSD. It is difficult to translate my xsd to DME xml.
    It is realizable in ABAP, but i want to minimize abap development.
    So I want to send this table to PI, transform it to file (xsd external definition) and then return this file as string (for example) and save it as file on the users front end. It is very simply to tranform the table to file, but i don't no how to send it back to R3. I think it is necessary to transfom file to message with another structure and then send to R3. Any ideas?
    Regards,
    Andrey

  • Send message from java not client

    I have a java app running on my server and I'd like to send
    messages to subscribed clients. All the messaging examples I find
    have the messages originating from a flex producer. I want java to
    be the producer.

    I used this example to get it done.
    http://western-skies.blogspot.com/2006/07/flex-sending-messages-from-server-side.html

  • Suddenly cannot send messages from ipad. Can send from iPhone and they show up on messages but when sending from ipad a they say not delivered

    Suddenly cannot send messages from ipad. Can send from iPhone and they show up on messages but when sending from ipad a they say not delivered

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    iOS: FaceTime is 'Unable to verify email because it is in use'
    http://support.apple.com/kb/TS3510
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    How to Set Up & Use iMessage on iPhone, iPad, & iPod touch with iOS
    http://osxdaily.com/2011/10/18/set-up-imessage-on-iphone-ipad-ipod-touch-with-io s-5/
    Set Up Alert Sounds
    http://www.quepublishing.com/articles/article.aspx?p=1873027&seqNum=3
    Extra FaceTime IDs
    http://tinyurl.com/k683gr4
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Troubleshooting iMessage Issues: Some Useful Tips You Should Try
    http://www.igeeksblog.com/troubleshooting-imessage-issues/
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Fix Can’t Sign Into FaceTime or iMessage iOS 7
    http://ipadtutr.com/fix-login-facetime-imessage-ios-7/
    FaceTime, Game Center, Messages: Troubleshooting sign in issues
    http://support.apple.com/kb/TS3970
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    iOS 7 allows you to block phone numbers or e-mail addresses from contacting you via the Phone, FaceTime, or Messages
    http://howto.cnet.com/8301-11310_39-57602643-285/you-can-block-people-from-conta cting-you-on-ios-7/
    How to Block Someone on FaceTime
    http://www.ehow.com/how_10033185_block-someone-facetime.html
    My Facetime Doesn't Ring
    https://discussions.apple.com/message/19087457#19087457
    How to watch FaceTime calls on the big screen with Apple TV
    http://www.imore.com/daily-tip-ios-5-airplay-mirroring-facetime
    Send an iMessage as a Text Message Instead with a Quick Tap & Hold
    http://osxdaily.com/2012/11/18/send-imessage-as-text-message/
    To send messages to non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
    How to Send SMS from iPad
    http://www.iskysoft.com/apple-ipad/send-sms-from-ipad.html
    How to Receive SMS Messages on an iPad
    http://yourbusiness.azcentral.com/receive-sms-messages-ipad-16776.html
    Apps for Texting http://appadvice.com/appguides/show/apps-for-texting
    You can check the status of the FaceTime/iMessage servers at this link.
    http://www.apple.com/support/systemstatus/
     Cheers, Tom

  • Upgraded to ios6 on ipad2 now I cant send messages from imessage.

    Upgraded to ios6 on ipad2 now I cant send messages from imessage. Any fix? I've rebooted/powered down and on again and in Settings turned messages off and on again. Still won't work...

    I did speak a bit too soon it seems - while I can now send messages again from my iPad 2, it still doesn't show me messages that were sent to me via my telephone number. Which is weird, because in the "You can be reached by iMessage at:" setting I do have my telephone number checked.
    At this moment I have set my iPad 2 and iPhone 4's "Start new conversations from:" setting to my Apple ID e-mail address. This way at least I can send messages *and* receive messages if people don't use my telephone number to send me messages...
    So yes, you should probably wait a while before restoring your iPad 2 - it doesn't fix things completely.

Maybe you are looking for

  • How do I change the apple ID on my ipad

    I created an Apple ID when I bought my ipad. I then linked it to the itunes account I share with my husband. When I downloaded IOS5 I used the Apple ID for set up. Now that is what is branded to the ipad so I can't sync with the itunes account. So ho

  • The simplest accounting flexfield form item

    Hi guys I'm trying to understand how to code a field/item to capture an account combination. I want to build a form with a single item. When I click on it, the accounting key flexfield window should pop up. (I have the DESC and ID fields in the form

  • Recently synced ipod nano no volume on device

    I just synced my recently purchased ipod nano and music is displayed on my device.  I selected a song and I get the forward arrow on the screen but it does not advance and there is no volume even after I turn it up all the way up.  Has anyone else ex

  • Interactive Reporting Scripting with Picture Object

    I'm using CreateShape(bqShapeType, [sectionName]) to dynamically create some simple graphics on a report. I've created simple shapes and lines fine. But I'm at a loss when creating new picture objects (which is a shapetype bqPicture). I can create it

  • How do you shuffle genre with iOS7 on iPhone5?

    How do you shuffle genre with iOS7 on iPhone5?