In ABAP, what would be the fastest way to concatenate items of the same field from multiple lines into a field of one line?
My program is supposed to report a list of payments, the vendor's ID, and the vendor's email addresses.
Email addresses are stored in table ADR6, one line per address, along with the vendor's ID they belong to.
For the report I would need an internal table populated with vendor IDs (unique key) and concatenated email_addresses, separated by semicolons.
How to populate this internal table?