on 2006 Jan 11 10:10 PM
I am developing inbound ABAP proxy. Using fault message and raise exception, I can safely fail the ABAP proxy without blocking the queues.
If I want to configure ALERT message to be sent to a email id in this scenario, how do I achieve this? Can this be done using Alert configuration? or do we need to use BPM? IF BPM is the only alternative, can anybody indicate the BPM steps?
Hi,
an alternative would be to call the Alert Framework from ABAP coding of your Proxy. Look at this page http://help.sap.com/saphelp_nw04/helpdata/en/d0/5e073c8e56f658e10000000a114084/content.htm about triggering alerts by calling function modules or using event linkage.
Best regards
Christine
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Kris,
I have a same scenario but need to block the Queue. Any idea how can this be achieved ?
Best Regards
Neeraj Gokhale
Edited by: Neeraj Gokhale on Nov 19, 2008 4:48 PM
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
> I am developing inbound ABAP proxy. Using fault
> message and raise exception, I can safely fail the
> ABAP proxy without blocking the queues.
>
Can you please tell how do you safely fail the ABAP proxy without blocking the queues???
For example if you have :
i = 0.
read table itab index i.
Or :
call function 'xxx'.
with a message e001(zisa) inside the function
Thanks in advance
PC
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Michael and Christine. I have got stuck up with other tasks, so once I can test it, I will close the thread.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
if you want to raise an alert from BPM
have a look at my weblog:
/people/michal.krawczyk2/blog/2005/03/13/alerts-with-variables-from-the-messages-payload-xi--updated
but if you want to send a mail from BPM
use mail adapter then you'll be able to
configure it very easily (even html mails):
/people/michal.krawczyk2/blog/2005/11/23/xi-html-e-mails-from-the-receiver-mail-adapter
- if you want you can also send mail from SAP
(when you catch the exception)
- you can also catch the excetpiton and
send the error to the XI and use the mail adapter from
there - without the BPM
there are many possibilities:)
Regards,
michal
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
68 | |
10 | |
8 | |
7 | |
6 | |
6 | |
6 | |
6 | |
6 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.