Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Members,
I just wanted to create a simple group by statement with the QlikView SAP SQL Connector.
SQL SELECT ABRSPERR , COUNT(*)
FROM EVER
GROUP BY ABRSPERR
;
Error: "Spezielle Datenquelle konnte nicht gelesen werden".
BUT: The SAP - Connector says that 10 rows have been transferred?
This is not possible?
What is the problem?
Best regards
Hi,
Try to remove the comma like:
SQL SELECT ABRSPERR COUNT(*)
FROM EVER
GROUP BY ABRSPERR
Regards,
Hakan