We can help. Together we learn....

UNIX Command in SAP ABAP

by Raju | Wednesday, May 26, 2010 in , |

We are moving to a better and faster site SAPYard.com  (http://www.sapyard.com/).

The content has been moved to below link. Please visit it at your convenience. Thank you for all your cooperation.

http://www.sapyard.com/unix-command-in-sap-abap/

1 comments:

  1. Raju on November 10, 2011 at 4:05 AM

    I found that there is one class which can be used to copy app server file from one directory to same/different directory.

    CALL METHOD cl_cts_language_file_io=>copy_files_local
    EXPORTING
    im_source_file = 'FINAL_I424_1.TXT'
    im_source_directory = '/tmp'
    im_target_file = 'FINAL_I424_1_COPY.TXT'
    im_target_directory = '/tmp'
    EXCEPTIONS
    open_input_file_failed = 1
    open_output_file_failed = 2
    write_block_failed = 3
    read_block_failed = 4
    close_output_file_failed = 5
    others = 6
    .

     

Categories