Posts

Confused and irritated with the error: "Exception: Cannot create a record in Alerts - event inbox data (EventInboxData)"? There is an easy hack.

I guess many of us have faced the issue of the below workflow error, while processing D365 FinOps Workflows: " Stopped (error): X++ Exception: Cannot create a record in Alerts - event inbox data (EventInboxData). Inbox ID: 5637144724 " For this you need to clear the dirty data, as outlined in the process below: select   *   from  EVENTINBOXDATA  where   not   exists   ( select   top  1  *   from  EVENTINBOX  where  EVENTINBOX . INBOXID  =  EVENTINBOXDATA . INBOXID ) Suggestion : backup EVENTINBOXDATA or backup database run below script to clean up the junk data : delete   from  EVENTINBOXDATA  where   not   exists   ( select   top  1  *   from  EVENTINBOX  where  EVENTINBOX . INBOXID  =  EVENTINBOXDATA . INBOXID )  

Using Azure API integration with D365FO - Part I

Image
  Azure API: quick overview Azure APIs are a stub of reliable connecters to any external world that can let you connect your application to talk to any 3 rd party appliance. Azure API in itself is a huge sea of possibilities: a.        letting you parse a web request using its rich NEWTON-SOFT based policies b.       letting you further call a function app c.        letting you further call a logic app d.       letting you further call another OpenApi/SOAP based web service The most appreciative features of Azure API are: a.        high availability: owing to being the integral part of MS Azure offering, Azure APIs can offer you an undisrupted service b.       flexible payment options like I.                   ...