cancel
Showing results for 
Search instead for 
Did you mean: 

SALERT_CREATE(RFC in PI 7.0)- Similar Solutionrequired in PI7.4 AEX

Former Member
0 Kudos

Hi All,

We are using SALERT_CREATE RFC in PI 7.0(Dual Stack) to send customized alert to user. Now as we are migrating the interface to SAP PI 7.4 (AEX) single stack we are looking at similar solution in SAP PI 7.4.

Our requirement is to send customized alert in SAP PI 7.4 (AEX) as similar as the way it is configured in existing SAP PI 7.0 version for interface by calling RFC SALERT_CREATE via udf.

So let us know if there is any web service or method that will fulfil the functionality like what RFC SALERT_CREATE was doing in SAP PI 7.0.

So far I have gone through the below stuff but didn't not help me.

Let me know if any one have the solution.It would be really a great help.

Link:http://help.sap.com/saphelp_nw73ehp1/helpdata/en/9b/b8b1b38fc74043a90fbc79d2e7abd4/content.htm

Link:http://help.sap.com/saphelp_nw73ehp1/helpdata/en/9b/b8b1b38fc74043a90fbc79d2e7abd4/content.htm

Accepted Solutions (0)

Answers (2)

Answers (2)

VijayKonam
Active Contributor
0 Kudos

Hello Prasanna,

This is just an idea though.

You could write a Java EJB module that could be called in the mapping udf. This EJB should take the alert details that you want to push to the user in the format that you chose and write them to an JMS Queue created on PI/PO server. This idea is similar to how PO is writing the standard alert JSON to the ALERT-TO-MAIL JMS queue.

You may then use the default AlertConsumerJob scheduled to retrieve alerts from this queue.

Note that, above normal Java skills are required for this task and it is just an idea. I hope to work on this as soon as I get some time.

Thanks,

VJ

Former Member
0 Kudos

Hi VijayaShankar,

Thanks for your reply.

Could you please let me know where I can get SAP API for accessing JMS queue store available in SAP PI 7.4.

I did try searching but I could only find below link and there are no classes available to access JMS queue.

http://help.sap.com/javadocs/NW74/SPS07/PI/index.html

VijayKonam
Active Contributor
0 Kudos

You may want to try here. Do update this thread, if you were able to succeed. All the best.

http://help.sap.com/saphelp_nw73ehp1/helpdata/en/49/136334cc39280ce10000000a42189c/content.htm

Vijay K

former_member184720
Active Contributor
0 Kudos

Still i don't see any standard method/service to call to create an alert like we have few for retrieving.

However Michal has explained alternate approach which has a drawback. Refer to below blog for more details.