‎2009 Apr 24 11:00 AM
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.
‎2009 Apr 24 11:03 AM
Where declare the internal table? If is in one TOP include, activate it before use the wizard.
‎2009 Apr 24 1:38 PM
Moderator message:
Use Proper Subject Line for your Future questions, else thread will be deleted or locked.
‎2009 Apr 24 1:52 PM
Hi,
Try
DATA : it_experience TYPE standard table of ty_experience OCCURS 0 WITH HEADER LINE.