Warning: include_once(http://erpgenie.com/_borders/topabap.htm) [function.include-once]: failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /var/www/vhosts/erpgenie.com/httpdocs/abaptips/templates/rhuk_solarflare_ii/index.php on line 52

Warning: include_once() [function.include]: Failed opening 'http://erpgenie.com/_borders/topabap.htm' for inclusion (include_path='.:') in /var/www/vhosts/erpgenie.com/httpdocs/abaptips/templates/rhuk_solarflare_ii/index.php on line 52

Login

Login to view more content!!!





Lost Password?
No account yet? Register

Registered Access

Poll

What area of ABAP are you interested in?
 
Home arrow Sample Code arrow ABAP Reports arrow Transfer file from Unix to NT
Transfer file from Unix to NT PDF Print E-mail
User Rating: / 0
PoorBest 
Written by Anon.   
Saturday, 24 February 2007
This program transfer a file from Unix /usr/sap/custom /tmp/filename.txt to NT Box \\ntsapftp\ftpin where you can copy and works with this in windows. REPORT ZSYFTP00  LINE-SIZE 132.
PARAMETERS : FILE(40) LOWER CASE OBLIGATORY
                      DEFAULT '/usr/sap/custom/tmp/filename.txt'.

DATA : C1(80) VALUE '/usr/sap/custom/bin/sapxfer'.

DATA : BEGIN OF TAB OCCURS 5,
         LINE(132),
       END OF TAB.

*- check batch
IF SY-BATCH <> SPACE.
  MESSAGE A398(00) WITH 'No batch running allowed'.
ENDIF.

*- generate UNIX command
WRITE FILE TO C1+30(40).
MESSAGE S398(00) WITH 'Processing ...'.
CALL 'SYSTEM' ID 'COMMAND' FIELD C1
              ID 'TAB'     FIELD TAB-*SYS*.
IF SY-SUBRC <> 0.
  MESSAGE I398(00) WITH 'FTP Error'.
ELSE.
  READ TABLE TAB INDEX 1.
  IF SY-SUBRC <> 0.
    MESSAGE I398(00) WITH 'FTP Error'.
  ELSE.
    MESSAGE I398(00) WITH FILE
                     'Transfered into NT Box \\ntsapftp\ftpin'.
  ENDIF.
ENDIF.

Related Items:

 
< Prev   Next >

Google Search

Statistics

Contribution Activity
Utilities: 38
Tips and Tricks: 333
Sample Code: 164
Total Contributions: 550

Member Activity
Members: 6244 since 2/1/2007!
New: 0 since yesterday!
Visitors: 1080646
We have 3 guests online

Newest Members

Welcome our newest members:

Google Ads


Warning: include(http://erpgenie.com/_borders/bottom.htm) [function.include]: failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /var/www/vhosts/erpgenie.com/httpdocs/abaptips/includes/footer.php on line 22

Warning: include() [function.include]: Failed opening 'http://erpgenie.com/_borders/bottom.htm' for inclusion (include_path='.:') in /var/www/vhosts/erpgenie.com/httpdocs/abaptips/includes/footer.php on line 22