Hi,
I have declared a structure using the type statement.
TYPES : BEGIN OF ty_experience,
empno TYPE ztable1-empno,
organisation TYPE ztable1-organisation,
from_date TYPE ztable1-from_date,
to_date TYPE ztable1-to_date,
END OF ty_experience.
Then declared the internal table.
DATA : it_experience TYPE ty_experience OCCURS 0 WITH HEADER LINE.
When I am creating the table contol using wizard using the internal table(it_experience) I am getting the error"Specify the work area of the table or a table with a header line".Though I am giving the internal table with header leine still I am getting the error message.Kindly suggest the solution.