Skip to Content
0
Former Member
Nov 28, 2008 at 06:19 PM

OPEN DATASET

1080 Views

Hi, friends..

I'm trying to save in App. Server same records, using the sintax below:

... to create the file in App. I use :

OPEN DATASET file_ws FOR OUTPUT IN TEXT MODE ENCODING DEFAULT

... and to input the data into the file a use:

v_size = '280'.

loop at t_file_11 .

...

...

TRANSFER t_file_11 TO file LENGTH v_size.

...

...

endloop.

But when I access the folder in App Server, the file doesn't exist.

and when I execute the program in Foreground using GUI_DOWNLOAD, the file is created normally.

Edited by: Flavio Ferreira on Nov 28, 2008 7:19 PM