copy content of table to internal table
hi all,
could you tell me how to avail the content of a database table into an internal table. i want to access those contents out side of select-end select construct.
regards,
nikhil
Tags:
Former Member replied
Hi,
DATA: it_vbak TYPE STANDARD TABLE OF vbak.
SELECT *
FROM vbak INTO TABLE it_vbak.
Regards,
Raghavendra