Paylaş.
REPORT ZUNIX_FILE_BROWSE_COMMAND_PROMPT
DATA UNIXCMD(50) TYPE C.
DATA: BEGIN OF ITAB occurs 0,
LINE(200),
end of ITAB.
PARAMETERS UNIXCOMM LIKE UNIXCMD
DEFAULT ‘ls -ls /usr/sap/’ LOWER CASE.
* Executing the system commands witin ABAP.
call ‘SYSTEM’ id ‘COMMAND’ field UNIXCOMM
id ‘TAB’ field ITAB-*SYS*.
EDITOR-CALL FOR ITAB DISPLAY-MODE.
VN:F [1.9.22_1171]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.22_1171]
Nis 22 2010
UNIX Server File System Browse – Command Promt Shell Komutları
Paylaş.
DATA UNIXCMD(50) TYPE C.
DATA: BEGIN OF ITAB occurs 0,
LINE(200),
end of ITAB.
PARAMETERS UNIXCOMM LIKE UNIXCMD
DEFAULT ‘ls -ls /usr/sap/’ LOWER CASE.
* Executing the system commands witin ABAP.
call ‘SYSTEM’ id ‘COMMAND’ field UNIXCOMM
id ‘TAB’ field ITAB-*SYS*.
EDITOR-CALL FOR ITAB DISPLAY-MODE.
By Burhan KARADERE • ABAP, SAP • 0 • Tags: Command, File System, server, unix