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

Pipe delimated in Application server

Former Member
0 Likes
1,065

Hi ,

I am downloading the data to application server.and it should be pipe delimated file(Seperator).

but i know the option for tab as cl_abap_char_utilities=>horizontal_tab.

but what value we have put for pipedelimated file separator for writing the file in application server.

Thanks,

Edited by: SAP SAR on Apr 9, 2009 8:28 PM

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
927

Hi,

There is no Pipe Deleimition Chanaracter in this particular Class, You may use like:


SEPERATED BY '|'.

Regards

Shital

Hi ,

I am downloading the data to application server.and it should be pipe delimated file(Seperator).

but i know the option for tab as cl_abap_char_utilities=>horizontal_tab.

but what value we have put for pipedelimated file separator for writing the file in application server.

Thanks,

Edited by: SAP SAR on Apr 9, 2009 8:28 PM

4 REPLIES 4
Read only

Former Member
0 Likes
928

Hi,

There is no Pipe Deleimition Chanaracter in this particular Class, You may use like:


SEPERATED BY '|'.

Regards

Shital

Read only

former_member194669
Active Contributor
0 Likes
927

Try this way


Data: wa TYPE C VALUE '|'.
loop at it_output into wa_output.
concatenate wa_output-vbeln wa_output-posnr into v_char separated by wa
transfer v_char TO v_filename
endloop.

nothing available for pipe like horizontal_tab.

Read only

former_member156446
Active Contributor
0 Likes
927

where ever you were using cl_abap_char_utilities=>horizontal_tab use '|'

think lv_tab = cl_abap_char_utilities=>horizontal_tab.

just make data: lv_del type C value '|' . and use concatenate .... seperated by lv_del.

Read only

Former Member
0 Likes
927

Thanks to all