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);
}
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:
Post a Comment