Create Alert using X++ codes
Try following code......
static
void
CreateAlertUsingCode(Args _args)
{
EventInbox inbox;
;
inbox.initValue();
inbox.ShowPopup = NoYes::Yes;
inbox.Subject =
"This is the Alert subject"
;
inbox.Message =
"This is the Alert message"
;
inbox.AlertedFor =
"This alert is just information no links are available"
;
inbox.SendEmail =
false
;
inbox.UserId = curuserid();
inbox.TypeId = classnum(EventType);
inbox.AlertTableId = tablenum(Address);
inbox.AlertFieldId = fieldnum(Address, Name);
inbox.TypeTrigger = EventTypeTrigger::FieldChanged;
inbox.CompanyId = curext();
inbox.InboxId = EventInbox::nextEventId();;
inbox.AlertCreatedDateTime = DateTimeUtil::getSystemDateTime();
inbox.insert();
}
- Harry
No comments:
Post a Comment
Thanks