Is their any method in SDK to verify event execution status as success or failure?

As of know only two ways to verify the status of  event execution .
1. Admin has to login into javaclient  to verify the event monitor
2.Open the object history to verify the event status.

But is their any mechanism that admin can get notification when any event or customization execution got failed.

Add Comment
3 Answer(s)

Hi Raghu,

It totally depends on how you design your solution. Generally what i have preferred is : 

1. Implement a Logger. 
2. Catch Exceptions and send those exceptions via mail to a user or set of users. 

Say for example : 
You catch exception and send a mail by implementing SMTP in your code. The implementation comes with a To and From list where you can specify intended people/id 

Regards,
Arif

Agile Angel Answered on April 11, 2017.
Add Comment

Hi Raghu, 

you can use EVENT_HISTORY Table from the database which will capture the event success or failure message. 
using the table it is easy to identify the success or failure events and take appropriate actions. 

and also as mentioned by arif this can also be achieved by catching an exception and send the group of people about the failure. 

Srini

Agile Angel Answered on May 3, 2017.
Add Comment

Hi Raghu,

If you have DB Access, as mentioned by Srinivas it is the most easy and effective way of tracking error . 

e.g. Select * from Event_History where Message like ‘%Error%’ order by LAST_UPD DESC or  Select * from Event_History where Message like ‘%Exception%’ order by LAST_UPD DESC

You can also explore sharing the Audit information via mail based on your required filtering on the db-column value. 

Regards,
Aif

Agile Angel Answered on May 3, 2017.
Add Comment

Your Answer

By posting your answer, you agree to the privacy policy and terms of service.