Supported by
Supported by Inetum

APPEND LINES OF class->method() TO itbl

images/thumbnail.jpg - Thumbnail

ABAP is getting smarter all the time. Back in my day, no one did anything with it. And now, slowly, more than a fifth of a century late, it’s trying to imitate C and Java, and becoming more flexible.

I was going to do something like this:

DATA: t_t001 TYPE STANDARD TABLE OF t001,
            t_t001_aux LIKE t_t001.

t_t001_aux = ZCL_T001=>GET_LINES( 'A' ).
APPEND LINES OF t_t001_aux TO t_t001.

REFRESH t_t001_aux[].

t_t001_aux = zcl_t001=>get_lines( 'A' ).
APPEND LINES OF t_t001_aux TO t_t001.

But then I thought… maybe… this might work:

DATA: t_t001 TYPE STANDARD TABLE OF t001.

APPEND LINES OF zcl_t001=>get_lines( 'A' ) TO t_t001.
APPEND LINES OF zcl_t001=>get_lines( 'B' ) TO t_t001.

And it did!

Did you understand? The GET_LINES method returns an internal T001-type table. Instead of saving the result in an internal auxiliary table and then adding the table’s lines to the final table, the method’s result is input directly to the final table. This is simpler and more elegant, and saves an internal auxiliary table.

Thanks to pollovf for the photo.

Greetings from Abapinho.