Application Development 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: 

regarding delimits

former_member197425
Active Participant
0 Kudos

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

matt
Active Contributor
0 Kudos

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

2 REPLIES 2

matt
Active Contributor
0 Kudos

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

Former Member
0 Kudos

Hi,

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

Check the below threads.

Regards,

Maha