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

Problem in data when i used CG3Z

Former Member
0 Likes
800

Hi All,

I am using transaction CG3Z to transfer files from presentation server to application server(in 4.7). For some lines i am getting # symbol. How to avoid this character at the end of lines.

Regards

rajavardhana reddy

Hi All,

I am using transaction CG3Z to transfer files from presentation server to application server(in 4.7). For some lines i am getting # symbol. How to avoid this character at the end of lines.

Regards

rajavardhana reddy

4 REPLIES 4
Read only

Former Member
0 Likes
583

Check the value what u are passing for Transfer format for data: hope its ASC

Read only

Former Member
0 Likes
583

Hi,

I hope you might have saved the file as Tab delimited file, so that might be the reason you are finding '#' , this is equal to TAB. if you are not sending the tab delimited file then ,then try to save it as tab delimited and see..

Regards

vijay

Read only

0 Likes
583

Hi Vijay,

It is true that we have saved file as tab delimited file. Due to this when i am running the program with this file, we are getting error. How to solve this problem

Read only

vinod_gunaware2
Active Contributor
0 Likes
583

hi

This character represent Tab in ascii format.

U can use CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB

this method which represent same '#' or tab

I have used in upload and download for splitting purpose.

eg.

SPLIT T_FLAT AT CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB

INTO T_WTYRCL_UPLOAD-REFNO

T_WTYRCL_UPLOAD-CLMTY.

It may be useful.

Regard

vinod