Application Development 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: 

MEthod

Former Member
0 Kudos

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.

3 REPLIES 3

Former Member
0 Kudos

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.

0 Kudos

i'm using the alv grid of function module.

and i can jump to the reports,

corresponding event. I call the function module in the event handler.

but i dont know how to jump to the methods....

0 Kudos

I already got the answer, i use the

SEO_METHOD_CALL_EDITOR.

thanks anyway