2007 Nov 21 11:58 AM
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 #
2007 Nov 21 1:28 PM
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
2007 Nov 21 1:28 PM
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
2007 Nov 21 7:55 PM