Quantcast
Channel: SCN: Message List
Viewing all articles
Browse latest Browse all 8445

Re: [ABAP 7.40] NEW syntax

$
0
0

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


Viewing all articles
Browse latest Browse all 8445

Trending Articles