Skip to Content
0
Former Member
Dec 07, 2006 at 02:18 AM

How could I assigning object values to internal table?

29 Views

CREATE DATA dref TYPE TABLE OF (table).

ASSIGN dref->* TO <intab>.

SELECT * FROM (table) INTO CORRESPONDING FIELDS OF TABLE <intab>.

I have create a internal table intab1.

obviously, the expressing "intab1 = <intab> " is wrong.

then,how should intab1 get the value of <intab>?