Hi experts,
Good morning and good evening.
I am working on Business event and needs your help.
1. Just wanted to check - how I 'll check, Is business event successfully trigger or not? and based on successful trigger of business event I want to perform another operation
Example
businessEvent = XXXBusinessEvent::newFromInventTrans(inventTable);
if(businessEvent)
{
businessEvent.send();
// TODO
Check if business event success then insert record into log table
}
2. In business event error log - I can see below log but when I've checked in Azure grid/ receiving application; I found receiving application, received the business event JSON response.
just wanted to know - If receiving application received the business event JSON successfully than why respected business event captured into business event error log ?
3. If I clicked on resend - than my above code would again trigger or not?

Thanks.