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 GRID

Former Member
0 Likes
577

Hi all,

I have checkbox for each record in my ALV grid output. i need to delete some records which are checked in the output. After i click the delete button i noticed that the records which i have checked in the output are deleted and removed from the internal table. what is the procedure to refresh the ALV GRID as it still show me the record in ALV grid.

Please help me solve this issue,

Thanks,

Rajesh.

Hi all,

I have checkbox for each record in my ALV grid output. i need to delete some records which are checked in the output. After i click the delete button i noticed that the records which i have checked in the output are deleted and removed from the internal table. what is the procedure to refresh the ALV GRID as it still show me the record in ALV grid.

Please help me solve this issue,

Thanks,

Rajesh.

4 REPLIES 4
Read only

Former Member
0 Likes
552

After you press DELETE button, you are handling this event. Here you are deleting recrods from the internal table. After that you need to display ALV report again so if you are using function module to display grid, call the same again.

Read only

Former Member
0 Likes
552

If you are using objects call the method refresh_table_display.

CALL METHOD c_grid->refresh_table_display.

Read only

Former Member
0 Likes
552

Hi

You have to delete those records (which were deleted with checking the checkboxes) from the internal table before the field catalog is merged and displyed

THEN IT WILL DISPLAY THE LEFTOUT RECORDS

Regards

Anji

Read only

Former Member
0 Likes
552

Actually i am doing so but alv grid still show me those record which i have already deleted .. i have deleted the record from internal table but alv is not refreshing

Please help me solve this issue,

Thanks,

Rajesh.