2009 Apr 09 7:28 PM
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
2009 Apr 09 7:38 PM
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
2009 Apr 09 7:38 PM
Hi,
There is no Pipe Deleimition Chanaracter in this particular Class, You may use like:
SEPERATED BY '|'.
Regards
Shital
2009 Apr 09 7:42 PM
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.
a®
2009 Apr 09 7:45 PM
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.
2009 Apr 09 8:33 PM
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |