Hello Guillaume,
Finally an ABAP 740 syntax related question
Why do you want to build the table using NEW? The operator VALUE does exactly what you want.
I can't manage to append a new line with values to an internal table in a single line??
DATA: lt_users TYPE STANDARD TABLE OF usr03. " User address lt_users = VALUE #( ( bname = 'ATURING' name1 = 'Alan TURING') "Line 1 ( bname = 'GGARCIA' name1 = 'Guillaume GARCIA') "Line 2 ).
BR,
Suhas