2007 Oct 25 12:29 PM
Hi,
Please send me example program for outbound interface to maintain file in application server.
Thanks
Ali
Hi,
Please send me example program for outbound interface to maintain file in application server.
Thanks
Ali
2007 Oct 26 1:50 AM
Hi,
the code should look like below.
declare:
filepath_name TYPE rlgrap-filename,
internal table itab.
**Populate data to itab.
OPEN DATASET filepath_name FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
IF sy-subrc = 0.
LOOP AT itab.
TRANSFER itab TO filepath_name .
ENDLOOP.
ELSE.
MESSAGE i001(00) WITH 'Error writing to file in remote computer'.
ENDIF.
CLOSE DATASET filepath_name .
| User | Count |
|---|---|
| 6 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |