REPORT YTEST9 NO STANDARD PAGE HEADING.
* This program displays a window to browse and find files on the
* presentation server.
DATA: FILE(100).
CALL FUNCTION 'WS_FILENAME_GET'
EXPORTING
DEF_FILENAME = 'netscape.exe'
DEF_PATH = 'c:\'
MASK = ',*.*,*.*.'
MODE = 'O'
TITLE = 'Please specify the locaton of netscape.exe'
IMPORTING
FILENAME = FILE
EXCEPTIONS
INV_WINSYS = 1
NO_BATCH = 2
SELECTION_CANCEL = 3
SELECTION_ERROR = 4
OTHERS = 5.
WRITE: / FILE.