Microsoft Dynamics GP SmartList Window Not Showing or Blank

Recently, a client of mine had an issue where the Dynamics GP SmartList Window would not open or when it did, it was blank.

I found that this is a known issue, as the window settings in the DYNAMICS SY01402 table can become corrupt and cause the window to hide or be blank.

Troubleshooting & Fixing the SmartList Window:

  1. First, try to find the window.
  2. Right click on the window and choose maximize.  If that does not work, the settings are most likely corrupted.
  3. If you think the settings are corrupt, check the user settings in the table by running this query:
    select * from DYNAMICS..SY01402 where syDefaultType = '96'
  4. Try to reset the setting for the current user with the issue by replacing the setting with one from another user that is working properly.
    update DYNAMICS..SY01402 set SYUSERDFSTR = 'TRUE~506~792~1~1~177~' 
    where USERID = 'XXXX' and syDefaultType = '96'
    
  5. If that does not resolve the issue, delete the setting for the user with the error.
    delete Dynamics..SY01402 where syDefaultType='96'and syUSERID='xxxx'​​
  6. To re-create that user, have the user log out of Dynamics GP and log in again. Now, have the user open the SmartLists, and the setting will be recreated.

If you have questions or need some assistance, visit our support page for more help.

Leave a Reply