Skip to Content
0
Former Member
Jun 15, 2011 at 02:16 AM

Field Symbol not assign

45 Views

hi experts,

can you help me on this on.

 data: dref type ref to data,
                     drefc type ref to data.

field-symbols: <itab type standard table,
                        <ctab> type standard table.

create data: dref type standard table of (s_tab).
create data: dfrefc type standard table of (s_ctab).

assign dref->* to <itab>.
assign drefc->* to <ctab>.

select * from (s_tab) into table <itab>.
loop at <itab> assigning <wa>.
move-corresponding <wa> to <wa_ctab>. -----> <wa_ctab> not assigned
insert into (s_ctab) values <wa_ctab>.
endloop.  commit work.

please help.

Thank You