Henrique said it right. I strongly recommend you read the modeling guide, available here: http://help.sap.com/hana/SAP_HANA_Modeling_Guide_en.pdf
An Analytic view is expressedly an OLAP view for aggregation, and so SELECT * would make no sense. The format of a query on an Analytic view should always be:
SELECT DIMENSION, SUM(MEASURE) FROM VIEW GROUP BY DIMENSION
John