‎2011 Aug 04 6:56 AM
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
‎2011 Aug 04 7:19 AM
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
‎2011 Aug 04 7:50 AM
Hi Venkatesh,
Thanks for ur immediate reply. my Problem solved.