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.
| < Prev | Next > |
|---|
SAP® Tips & Tricks
Create a Directory in the user local hardisk
Written by Anon.
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.
| < Prev | Next > |
|---|
©2001-2008 Genieholdings.COM, Inc. All rights reserved. ERPGenie.COM, EDIGenie.COM, WorkflowGenie.COM and ESAGenie.COM are Trademarks of Genieholdings.COM, Inc. All product names are trademarks of their respective companies. GenieHoldings.COM, Inc. and it's websites are in no way affiliated with SAP AG. SAP, SAP R/3, R/3 software, mySAP, ABAP, BAPI, xApps, SAP NetWeaver, and and any other SAP trademarks are registered trademarks of SAP AG in Germany and in several other countries. Every effort is made to ensure content integrity. Use information on this site at your own risk.
