Paylaş.
report zdirectory_browse .
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]
May 5 2010
Sap Unix Server Klasör Erişim – Directory Browse
Paylaş.
report zdirectory_browse .
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 • SAP • 0