Home window - AX 2009 - Possible fixes for problems

 Here are some fixes for when the Home page is not being displayed:

 1 . Make sure you have the profiles defined properly. You can see this in the Administration -> Setup -> User profiles. If there are no records there you can use the Import -> Import from AOT.
 2. You need to setup your to the desired profile (on the Users tab) and restart the client.
 3. Check the status of the checklists ... seems having them completed is a condition the kernel is looking for:
static void CheckListsStatus(Args _args)
{
    SysSetupLog SysSetupLog;
    ;

    ttsbegin;
    while select forupdate SysSetupLog
    {
         if ((strscan(SysSetupLog.Name, 'SysCheckList_', 0, 100) > 0) &&
              SysSetupLog.Description != '')
         {
              //info (int642str(SysSetupLog.RecId) + " - " + SysSetupLog.Description);
              syssetuplog.Description = "Finished";
              syssetuplog.update();
         }
    }
    ttscommit;
}

No comments:

Post a Comment