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

regarding delimits

former_member197425
Active Participant
0 Likes
419

Hi,

can anyone please tell me how to solve this task

The task is i need to generate a report which on executing it all the fields values must be delimited by #

1 ACCEPTED SOLUTION
Read only

matt
Active Contributor
0 Likes
397

I'm assuming that you've got an internal table with data in various fields. Prepare a variable that will contain the entire record you want to output.

Loop through the table, and use CONCATENATE wa-fld1 wa-fld2... INTO my_output_record_variable SEPRATED BY '#'.

matt

Hi,

can anyone please tell me how to solve this task

The task is i need to generate a report which on executing it all the fields values must be delimited by #

2 REPLIES 2
Read only

matt
Active Contributor
0 Likes
398

I'm assuming that you've got an internal table with data in various fields. Prepare a variable that will contain the entire record you want to output.

Loop through the table, and use CONCATENATE wa-fld1 wa-fld2... INTO my_output_record_variable SEPRATED BY '#'.

matt

Read only

Former Member
0 Likes
397

Hi,

You need to concatenate with ; and insert into the Internal table then pass the internal table

Check the below threads.

Regards,

Maha