Banner

Attention: open in a new window. PDFPrintE-mail

2008
09
May

Create a Directory in the user local hardisk

REPORT ZGUI_DIR.

call function 'GUI_CREATE_DIRECTORY'
  exporting
    dirname       = 'C:\TEST'
  EXCEPTIONS
    FAILED        = 1
    OTHERS        = 2.

if sy-subrc <> 0.
  WRITE: / 'Error Code ',SY-SUBRC.
endif.

Last Updated (Monday, 05 May 2008 05:12)