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

Conversion error while file upload

ankit298012
Explorer
0 Likes
2,397

Hi ,

I am working on 4.0b version . I am uploading a txt tab delimited file from presentation server using ws_upload . While doing so I am getting Conversion error while transfer(upload) line 1 /Column 104 . Although the data is getting uploaded but it gives message conversion error. I have checked the txt file for tab but nothing getting out of it . Can anybody help me in how to handle this information message.

Thanks

Ankit

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,381

Hi Ankit,

so you are maybe using filetype DAT (ASCII data table with column tab), but you are filling parameter DAT_D_FORMAT with incorrect value. I think it should be 'DD.MM.YYYY', 'MM/DD/YYYY' or 'YYYY/MM/DD'. Or you can leave it empty. Check lines 122 - 145 of function module ITS_UPLOAD. Or a file contains a date in a different format as you specified. You did not describe your problem in detail. I think you should debug WS_UPLOAD and you will easily see what is the problem.

I hope it helps

Regards

Adrian

2 REPLIES 2
Read only

Former Member
0 Likes
1,382

Hi Ankit,

so you are maybe using filetype DAT (ASCII data table with column tab), but you are filling parameter DAT_D_FORMAT with incorrect value. I think it should be 'DD.MM.YYYY', 'MM/DD/YYYY' or 'YYYY/MM/DD'. Or you can leave it empty. Check lines 122 - 145 of function module ITS_UPLOAD. Or a file contains a date in a different format as you specified. You did not describe your problem in detail. I think you should debug WS_UPLOAD and you will easily see what is the problem.

I hope it helps

Regards

Adrian

Read only

0 Likes
1,381

Thanks.