Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ALV - get all rows

Former Member
0 Likes
578

Hi Experts,

I am looking for solution for ALV. I want to get all rows (chaged, un-changed, new rows) from ALV to internal table.

Thanks in advance for solution.

Regards,

Sajjad

Hi Experts,

I am looking for solution for ALV. I want to get all rows (chaged, un-changed, new rows) from ALV to internal table.

Thanks in advance for solution.

Regards,

Sajjad

3 REPLIES 3
Read only

chaouki_akir
Contributor
0 Likes
543

Hello,

what report or transaction code is creating the ALV list you are talking about ?

Cordialement.

Read only

Former Member
0 Likes
543

Can u explain more clearly . After modifying a alv grid u can use following method to display refreshed data.

CALL METHOD go_grid->refresh_table_display.

Read only

Former Member
0 Likes
543

If your'e using the class CL_SALV_TABLE for ALV displayment try the method GET_DISPLAY_SETTINGS, GET_METADATA or just activate method FACTORY:

TRY.

CALL METHOD CL_SALV_TABLE=>FACTORY

IMPORTING

R_SALV_TABLE = GR_TABLE

CHANGING

T_TABLE = GT_ITAB.

CATCH CX_SALV_MSG.

ENDTRY.

When GT_ITAB includes all your data.

Best regards,

Rebeka