4 Apr 2013

Set a startup message for Microsoft Dynamics AX client

To set a startup message

Following are the two methods which are useful to show start-up message at the beginning of AX 2009.
1. Update the Client configuration Utility option.
Microsoft Dynamics AX Configuration Utility (client) -> Genereal Tab -> Field "Startup Message"

2. If you have to add the custom message as per users name at the beginning of AX 2009 then update the following code in Classes---> Info class---> StartUpPost method.
void startupPost()
{
UserInfo UserInfo;
select Name from UserInfo where UserInfo.id==curUserId();
info('Welcome to '+UserInfo.name);
}

No comments:

Create number sequence in D365 FO

Create the data type. Add code in the loadModule method of the appropriate NumberSeqModule subclass. Add a method to the module’s paramet...