unload data from adabas

Is there any way to unload adabas data to flat file using natural programs?

Please provide with examples.

Please look into
:arrow: library: SYSEXPG
:arrow: program: WWFEX1

Sorry, plase look into libaray: SYSEXRM (not SYSEXPG) :roll:

iam new to ADABAS. we are running adabas v 3.1 on Windows platforms.
any small natural program to unload the data from adabas to flat files.
please help me to prodive sample programs (natural or C)

/* EXAMPLE 'WWFEX1': WRITE WORK FILE
/***************************************
DEFINE DATA LOCAL
1 EMPLOY-VIEW VIEW OF EMPLOYEES
  2 PERSONNEL-ID
  2 NAME
END-DEFINE
/***************************************
FIND EMPLOY-VIEW WITH CITY = 'LONDON'
 WRITE WORK FILE 1
       PERSONNEL-ID
       NAME
END-FIND
/***************************************
END

Thanks for the program. Is it possible to speicfiy delimit option in the program ( pipe | symbol) …

example :

data should like this

Michael|germany|1110|nice guy

Dear Sarovb,
There are many possibilities to write data to disk. Please look into the documentation regarding:

define work file
compress

(When Natural on Windows is running, you may press F1 to call the help function.)
[/list]
[/code]