I have a alv grid and i when i double click in a line a EDITOR_PROGRAM is display and it jumps to the information that i passed it on the alv grid.
Ex CALL FUNCTION 'EDITOR_PROGRAM'
EXPORTING
display = 'X'
line = itab_logs-linha
program = itab_logs-nome
EXCEPTIONS
application = 1
OTHERS = 2.
IF sy-subrc <> 0.
My question is when i have a method waht function can i use to jump to the line of the method that i want?
ps. i dont want to use the source code of ZCL_EMMA_CRI_AUT_CASO_S_COMMITCM00X directly, instead i want to jump to se19 or another one and see it there.
Thanks for taking the time to think on my question.
Hello Rui,
Your problem description is not totally clear and sufficient. Are you using the OO Version of the ALV GRID or the Function Module approach?
First of all, for you to be able to respond to the double click in the ALV Grid, you will have to register the corresponding event. Then you write the code to call the function module in the event handler.
Please do get back with a little more details.
Regards,
Anand Mandalika.
Add a comment