i have writtten aprogram to check the data in the table. program is like
REPORT ZTEST3.
tables zempdata.
data wa_zempdata type zempdata.
loop at zempdata into wa_zempdata.
WRITE: / 'Runtime 1', wa_zempdata-employee_number.
WRITE: / 'Runtime 2', wa_zempdata-employee_name.
ENDSELECT.
its giving me error saying VERSION expected after zempdata.
is there any way to resolve it or any other simple way to check the dat in the table through report program as i don't have acces on se16