I have a Smartlist created from a SQL View that ran for an hour last night and brought no data to the screen. It never said completed always Exploring. I have brought this SL down to the most basic and it still will not work as a SQL View in SLD...
[UPR00100].[EMPLOYID] AS 'Employee ID',
[UPR00100].[EMPLCLAS] AS 'Employee Class',
[UPR00100].[LASTNAME] AS 'Last Name',
[UPR00100].[FRSTNAME] AS 'First Name',
[UPR00500].[DEDUCTON] AS 'Deduction',
[UPR00500].INACTIVE AS 'Inactive',
[UPR00500].[DEDNPRCT_1] AS 'Deduction Percent[1]',
[UPR00500].[DEDCAMNT_1] AS 'Deduction Amount[1]'
from [UPR00100]
inner join [UPR00500]
on [UPR00100].[EMPLOYID] = [UPR00500].[EMPLOYID]
When i run the Select statement in SQL i get 4083 rows. Any ideas??
*This post is locked for comments