‎2010 Feb 23 1:40 PM
Hello,
I know this is a trivial issue, but I greatly appreciate your help.
I am declaring an internal table like this:
data: begin of t_data1.
include structure /z_dvmaster.
data: celltab type lvc_t_styl.
data: end of t_data1.
data: t_data like standard table of t_data1.
select *
into table t_data
from z_dvmaster.However, I am getting error "The work area (or internal table) "T_DATA" is not flat, or contains
reference or internal tables as components."
Can you please let me know how to correct this?
Thanks.
‎2010 Feb 23 1:43 PM
Hi,
try this
select *
into corresponding fields of table t_data
from z_dvmaster.
regards Marcel
‎2010 Feb 23 1:43 PM
Hi,
try this
select *
into corresponding fields of table t_data
from z_dvmaster.
regards Marcel
‎2010 Feb 23 1:48 PM