‎2019 May 20 4:40 PM
Good morning! i got a question, is there a way to acumulate a table into another? this question comes up from the following situation: i'm using a call transaction into a loop, every iteration the call transaction returns an error table typed bdcmsgcol, i want to acumulate this table for every iteration and show it in a ALV. does exist a way to do that? and if it does, what would be the best way to do it? Thanks!!!
‎2019 May 20 5:17 PM
‎2019 May 20 5:17 PM
‎2019 May 20 10:29 PM
‎2019 May 21 6:23 AM
INSERT LINES OF ... INTO TABLE ... is to be preferred over APPEND LINES OF.
Although in this case, the internal table is standard, so APPEND will work, generally it works only for standard tables, not hashed or sorted. If you use INSERT LINES OF ... INTO TABLE, or INSERT ... INTO TABLE, you'll never go wrong.