You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
METHOD perform_aggregation.
SELECT
FROM @initial_numbers as a
FIELDS group,
COUNT( * ) AS count,
SUM( number ) AS sum,
MIN( number ) AS min,
MAX( number ) AS max,
AVG( number ) AS avg
GROUP BY group
ORDER BY group ASCENDING
INTO TABLE @aggregated_data.
ENDMETHOD.
Copied the testclass to my local class on a 7.55 Release and there was no issue:
Guess at the moment there is no downport for this case.
The text was updated successfully, but these errors were encountered:
Hello
I'm at the https://exercism.org/tracks/abap/exercises/itab-aggregation and solved it with a select from itab.
But ran into the following error:
Code:
Copied the testclass to my local class on a 7.55 Release and there was no issue:
Guess at the moment there is no downport for this case.
The text was updated successfully, but these errors were encountered: