I have some problem for connect Qlik with SQL Store Procedures. I have developed two SP and Qlik only works with on of this two.
EXECUTE[Demo Database NAV (8-7)].[dbo].NAVConnectorUnshared@TableName='Customer',@TableFields='[No_],[Name]';
EXECUTE[Demo Database NAV (8-7)].[dbo].NAVConnectorShared@TableName='Company',@TableFields='[Name],[XRT]';
Inthe attached pictureyou can seethe result oftheSP, apparently the results are correct. The select that SP genetares are these:
SELECT 'COPIA' AS COMPANY,[No_],[Name] FROM [Demo Database NAV (8-7)].[dbo].[COPIA$Customer] UNION SELECT 'CRONUS España S.A.' AS COMPANY,[No_],[Name] FROM [Demo Database NAV (8-7)].[dbo].[CRONUS España S_A_$Customer]
SELECT [Name],[XRT] FROM [Demo Database NAV (8-7)].[dbo].[Company]