REDUCE not concatenating strings
Why does the following code with REDUCE not concatenate the table into the string 'ABC'? DATA t TYPE TABLE OF kna1. t = VALUE #( ( kunnr = 'A' ) ( kunnr = 'B' ) ( kunnr = 'C' ) ). DATA(log1) = REDUCE string( INIT x1 = '' FOR wa IN t NEXT x1 = ...