Skip to Content
0
Former Member
Sep 29, 2005 at 12:00 PM

Creating and reading an internal table

26 Views

Hi,

I need to create an internal table of strings, and then be able to assign it back to just a single variable,

I've tried it below, but it comes back with syntax errors.

DATA: BEGIN OF it_url OCCURS 4,

url(255),

END OF it_url.

it_url-url = 'c:\June 2005 Timetable Booklet.pdf'.

APPEND it_url.

it_url-url = 'c:\a.pdf'.

APPEND it_url.

URL = it_url[1]. ***************> does not like this

Thanks