2008 Apr 25 8:54 AM
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....
2008 Apr 25 8:57 AM
Hi,
This is to refresh the table.
in normal reporting we use clear and refresh keywords.
Regards,
Raj.
2008 Apr 25 9:01 AM
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
2008 Apr 25 9:07 AM
Hi,
check the sample program BCALV_TEST_GRID_EDIT_01.
Regards,
Raj.
2008 Apr 25 8:58 AM
Hi Sanu,
Below Function Modules can be useful:
REUSE_ALV_LIST_DISPLAY
REUSE_ALV_GRID_DISPLAY
Regards,
Sunil
2008 Apr 25 8:58 AM
Hi,
Check these programs..
BCALV_TEST_GRID_EDITABLE
BCALV_TEST_GRID_EDIT_01
Regards,
Satish
2008 Apr 25 9:07 AM
hi check this...
http://help.sap.com/saphelp_nw04/helpdata/en/0a/b5531ed30911d2b467006094192fe3/frameset.htm
regards,
venkat.
2008 Apr 25 9:14 AM
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.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |