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

BDC Issue

Former Member
0 Likes
441

Hi Friends,

I am Neetha i developed a program to upload flat file from client to Application Server using FM-'C13Z_FILE_UPLOAD_ASCII'

But my flat file data is separated my tab space, but after loading into the Application server it shows the data is separated by

'#' symbol. i could understand why this problem is comming, Can Pls help with correct answers or links.

the reason iam using this FM-C13Z_FILE_UPLOAD_ASCII is my file has to always overwrite in Application server. Pls help me.

Regards,

Neetha.

Moderator message: please choose more descriptive subject lines for your posts.

Edited by: Thomas Zloch on Aug 4, 2011 9:04 AM

2 REPLIES 2
Read only

Former Member
0 Likes
401

Hi Neetha,

Whenever you create a file in application server with tab delimited format,

the file will be created with the # symbol, but actually it is not the #, rather it is horizontal tab,

lc_tab TYPE c VALUE cl_abap_char_utilities=>horizontal_tab.

Whenever we create the tab delimited file in APP server, you should not use '#' directly.

instead you have to use the above horizonta_tab type.

Do not get confused with the '#' symbol, SAP has used this symbol to represent the tab delimiter.

thats all.

Hope you understand.

Regards,

Venkatesh

Read only

0 Likes
401

Hi Venkatesh,

Thanks for ur immediate reply. my Problem solved.