Skip to main content

Send message to online user in Dynamics AX

static void sendAlert(Args _args)

{

EventInbox inbox;


EventInboxId inboxId;

inboxId = EventInbox::nextEventId();

inbox.initValue();

inbox.ShowPopup = NoYes::Yes;

inbox.Subject = "Message to online user";

inbox.Message = "Message you want to send to user";

inbox.SendEmail = false;

inbox.UserId = curUserID();

inbox.InboxId = inboxId;

inbox.AlertCreatedDate = systemdateget();

inbox.AlertCreateTime = timeNow();

inbox.insert();

}