Google Search - Blog...........

ABAP - Sample Program On Downloading From Internal Table To File Using GUI_DOWNLOAD.

REPORT ZVENKATTEST0.

data: begin of itab occurs 0,
a type c,
c type c,
b type i,
end of itab.

itab-a = 'a' .
itab-c = ':'.
itab-b = 1 .
append itab .


itab-a = 'b' .
itab-c = ':'.
itab-b = 2 .
append itab .


itab-a = 'c' .
itab-c = ':'.
itab-b = 3 .
append itab .

data: file type string .

file = 'C:\Documents and Settings\venkatapp\Desktop\test.txt'.


CALL FUNCTION 'GUI_DOWNLOAD'
EXPORTING
FILENAME = file
FILETYPE = 'ASC'
WRITE_FIELD_SEPARATOR = ':'
TABLES
DATA_TAB = itab.



ALSO READ:

- Download Internal Table Data To Excel or TXT File Using FM GUI_DOWNLOAD.

- Sample Program To Open A File On The System Using FM WS_EXECUTE.

- Download Code To System Using FM RS_TESTFRAME_CALL.

- Download Code To The Desktop With Screens.

- Uploading Data From Excel Sheet To Internal Table Using FM ALSM_EXCEL_TO_INTERNAL_TABLE.

RETURN TO MAIN INDEX:

- Sample Programs On Uploading & Downloading Files.

- Sample Programs On HR ABAP.

- Sample Report Programs On ALV List/ Grid Display.

- Sample Programs On Selection Screen.

- Sample Programs On BDC.

.....Back To MAIN INDEX.

No comments:

Post a Comment