2006 Jun 11 2:19 AM
hi i am using NORMAL ABAP to display ALV GRID report output. few fields on the output are enabled for user inputs( are editable ). How to get back the data entered by the user in the program back? I am NOT using OBJECT ORIENTED alv grid. I am using normal abap.
is there any Function module to get back the user inputs?
2006 Jun 11 6:47 AM
Hi,
You can use the same FM to get the user input data.
Call FM like this:
DATA:
LC_GLAY TYPE LVC_S_GLAY.
* this is the critical point
LC_GLAY-EDT_CLL_CB = 'X'.
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
I_GRID_SETTINGS = LC_GLAY
IT_FIELDCAT = L_ALV_FILEDCAT
TABLES
T_OUTTAB = ITAB.Cheers
VJ
hi i am using NORMAL ABAP to display ALV GRID report output. few fields on the output are enabled for user inputs( are editable ). How to get back the data entered by the user in the program back? I am NOT using OBJECT ORIENTED alv grid. I am using normal abap.
is there any Function module to get back the user inputs?
2006 Jun 11 6:47 AM
Hi,
You can use the same FM to get the user input data.
Call FM like this:
DATA:
LC_GLAY TYPE LVC_S_GLAY.
* this is the critical point
LC_GLAY-EDT_CLL_CB = 'X'.
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
I_GRID_SETTINGS = LC_GLAY
IT_FIELDCAT = L_ALV_FILEDCAT
TABLES
T_OUTTAB = ITAB.Cheers
VJ
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |