Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

comma seperated file

Former Member
0 Likes
661

Hi,

Just want an idea to download comma seperated file.

thanks and best regards.

Kusum.

1 ACCEPTED SOLUTION
Read only

GauthamV
Active Contributor
0 Likes
623

hi,

in gui_download function module use this.

WRITE_FIELD_SEPARATOR = ' '

Hi,

Just want an idea to download comma seperated file.

thanks and best regards.

Kusum.

4 REPLIES 4
Read only

GauthamV
Active Contributor
0 Likes
624

hi,

in gui_download function module use this.

WRITE_FIELD_SEPARATOR = ' '

Read only

Former Member
0 Likes
623

after you download the data

we can use like this

loop at IT_itab1 into itab1.

 split itab1-field at ',' into wa_bill-BILLNO wa_bill-BDATE WA_BILL-BYEAR WA_BILL-BMONTH
          WA_BILL-OFFAREA WA_BILL-SOURCESYSTEM WA_BILL-MATDESC WA_BILL-ADVERTISCOST WA_BILL-COMM
          WA_BILL-GROSSAMOUN WA_BILL-CASHDISCOUNT WA_BILL-NETAMOUNT WA_BILL-CUSTCODE WA_BILL-CUSTNAME
          WA_BILL-PROCODE WA_BILL-PROJID WA_BILL-WBSELE.

APPEND WA_BILL to IT_BILL.

endloop.

Read only

Former Member
0 Likes
623

Hi Kusum,

As also told by others, if you are using FM GUI_DOWNLOAD than you have to give WRITE_FIELD_SEPARATOR as 'X' for separator and space if you dont want separator and by default it is always space.

With luck,

Pritam.

Read only

Former Member
0 Likes
623

Hi,

use open dataset to download from AS to IT

& IT to AS.

Thanks,

Krishna