cancel
Showing results for 
Search instead for 
Did you mean: 

Error Internal table is not structured

Former Member
0 Kudos

Hi All,

I have defined

TYPES tab_authors TYPE STANDARD TABLE OF bsauthor with default key.

in my Type defination

then defined 'authors' as a table in my Page Attributes

and written a select query in oninitialization event.

select distinct

authlname authfname

from bsauthors

into corresponding fields of table authors.

When I am trying to activate this I am getting the error.

Internal table is not structured

Can you please let me know what went wrong.

Regards,

Atish

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Problem solved.

TYPES tab_authors TYPE STANDARD TABLE OF bsauthor<should be BSAUTHORS> with default key.