2007 Nov 08 4:07 PM
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
2007 Nov 10 8:15 PM
Hello,
what report or transaction code is creating the ALV list you are talking about ?
Cordialement.
2007 Nov 11 6:59 AM
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.
2007 Nov 11 9:49 AM
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