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 using in download function

Former Member
0 Likes
463

Dear Experts,

I am using download function to download values from application server to desktop.

After downloading the output is like the foollowing.

0 temp 30 bar(kg)

But now the user requirement is I have to print it like the following.

0/temp/30/bar(kg)

I have to delete the space and have to give '/' sign.

Please help me to fix this.

Thanks in Advance

Ansuman Parhi

4 REPLIES 4
Read only

Former Member
0 Likes
446

Hi,

Use Separator / in the Function module while dowloading.

Check thi link-In the 9th pst check the program , instead of ,

use /.

Read only

Former Member
0 Likes
446

Use

REPLACE ALL OCCURRENCES OF

Read only

0 Likes
446

Dear Amit,

Can u please tell me elaborately and gives me a sample.

Regards

Ansuman

Read only

former_member761936
Active Participant
0 Likes
446

Hi,

THis is a simple conversion.

First Upload file from application server using dataset concept and Store Internal table of Char field like

Begin of itab occurs 0,

Data(200) type c,

End of itab .

then Split that into some fields space

Loop at itab.

Split itab-data at ' ' into fields,

Concatenate fields into itab-data seperated by '/'

Modify Itab.

endloop.

Then download this.