Hello,
Starting on the last update on Eclipse Luna (and Mars as well), I'm not able to Data preview anything that was an aggregation node anymore.
Whenever I try to data preview anything above an aggregation node, I get the following message:
Error: SAP DBTech JDBC: [260] (at 15): invalid column name: The column 'xxx' is invalid in the select list because the GROUP BY clause or an aggregation function does not contain it: line 1 col 16 (at pos 15)
It does run without any problem on Eclipse Kepler, and the difference between the SQL clause is, of course, that the GROUP BY is missing on the last update on Luna/Mars.
For example, data preview on the semantics node of sap.glo.tmflocbr.ctr/AJUSTE_APURACAO_IPI gives me the following SQL on KEPLER:
SELECT TOP 200 "MANDT", "EMPRESA", "FILIAL", "NUM_DOC", "DT_REG", "IND_AJ", "COD_AJ", "IND_DOC", "DESCR_AJ", sum("VL_AJ") AS "VL_AJ" FROM "_SYS_BIC"."sap.glo.tmflocbr.ctr/AJUSTE_APURACAO_IPI" GROUP BY "MANDT", "EMPRESA", "FILIAL", "NUM_DOC", "DT_REG", "IND_AJ", "COD_AJ", "IND_DOC", "DESCR_AJ"
on Luna/Mars:
SELECT TOP 200 "MANDT", "EMPRESA", "FILIAL", "NUM_DOC", "DT_REG", "IND_AJ", "COD_AJ", "IND_DOC", "DESCR_AJ", sum("VL_AJ") AS "VL_AJ" FROM "_SYS_BIC"."sap.glo.tmflocbr.ctr/AJUSTE_APURACAO_IPI"
Anyone else having this issue? I know I can copy/paste on sql console and add the fields manually, but I'm looking for a permanent fix.
Thanks in advance,
Daniel