Hola,
Prueba esto
SELECT DISTINCT *
INTO
TABLE <itab>
FROM topten
WHERE datetime
IN
(
SELECT
MAX
( datetime
)
FROM topten
GROUP
BY home
)
.