‎2007 Feb 02 5:32 AM
In alv when I enter value in runtime I am not able to catch the value.(when edit = 'X')
Why ?
I am not using oops concept, if its required help me out with actual syntax.
Can u please help me out....
Thanks in advance.
‎2007 Feb 02 5:35 AM
r u using list or grid display?
if u r using reuse_alv_grid_display , write this code in USER_COMMANd subroutine
FORM alv_user_command USING ucomm LIKE sy-ucomm
selfield TYPE slis_selfield.
DATA : ref1 TYPE REF TO cl_gui_alv_grid.
CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
IMPORTING
e_grid = ref1.
CALL METHOD ref1->check_changed_data.
CASE ucomm.
ENdcase.
endform.
Message was edited by:
Chandrasekhar Jagarlamudi
‎2007 Feb 02 5:37 AM
HI,
Look at the below Blog
/people/community.user/blog/2007/01/10/displaychange-mode-of-editable-fields-in-alv-using-function-modules-but-not-custom-containers
Regards
Sudheer