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

Former Member
0 Likes
953

Hi Guys ,

We use refresh_table_display method using Object oriented programming.. Do u guys know the equivalent function in Simple report programs....

Hi Guys ,

We use refresh_table_display method using Object oriented programming.. Do u guys know the equivalent function in Simple report programs....

7 REPLIES 7
Read only

Former Member
0 Likes
936

Hi,

This is to refresh the table.

in normal reporting we use clear and refresh keywords.

Regards,

Raj.

Read only

0 Likes
936

Thanks raj .. Situation is that i delete some of the records in that alv and again i will display the remaining records in that Alv... How do i do that

Read only

0 Likes
936

Hi,

check the sample program BCALV_TEST_GRID_EDIT_01.

Regards,

Raj.

Read only

Former Member
0 Likes
936

Hi Sanu,

Below Function Modules can be useful:

REUSE_ALV_LIST_DISPLAY

REUSE_ALV_GRID_DISPLAY

Regards,

Sunil

Read only

Former Member
0 Likes
936

Hi,

Check these programs..

BCALV_TEST_GRID_EDITABLE

BCALV_TEST_GRID_EDIT_01

Regards,

Satish

Read only

Former Member
Read only

Former Member
0 Likes
936

yes we have refresh functionality in normal ALV's too:

check this code:

callbackuser_command = 'USER_COMMAND'

...

FORM USER_COMMAND USING UCOMM LIKE SY-UCOMM SELFIELD TYPE SLIS_SELFIELD.

case UCOMM.

when '&IC1'. "this is for double click.

READ TABLE it_idoc INDEX selfield-tabindex.

SET PARAMETER ID 'DCN' FIELD it_idoc-docnum.

SUBMIT RSEIDOC2 WITH DOCNUM = it_idoc-docnum

WITH CREDAT = It_idoc-credat AND RETURN.

selfield-refresh = 'X'.

ENDCASE.

Regards.

Dara.