Erro de recebimento “Selecionar instruções incluídas em uma função não podem retornar dados para um cliente”

Recebendo um erro ao tentar usar uma instrução Select em uma função. O erro indica:

Msg 444, nível 16, estado 2, procedimento JDE_GetWhereClause_test, linha 26
Selecionar instruções incluídas em uma função não podem retornar dados para um cliente.

Alguma ideia?

CREATE FUNCTION [dbo].[JDE_GetWhereClause_test]
(
@tablename as varchar
)
RETURNS varchar(max)
AS
BEGIN
-- Declare the return variable here
Declare @ResultVar as varchar(max)

-- Add the T-SQL statements to compute the return value here

set @tablename = 'F0101'
Declare @Sql nvarchar(max)
Declare my_cur cursor for
    SELECT fsuser FROM dbo.JDE_ExRowSecurity where fsuser = fsuser;

Declare @fsuser as nchar(15)
open my_cur;
fetch next from my_cur;
while @@fetch_status = 0
   begin
      fetch next from my_cur into @fsuser;    
      set @ResultVar += ',' + @fsuser;
   end;
close my_cur;
deallocate my_cur;

-- Return the result of the function
RETURN @ResultVar
END

questionAnswers(2)

yourAnswerToTheQuestion