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: 

Respond to double click in module pool program

Former Member
0 Kudos

Dear All,

In my dialog program, i have 4 fields from MBEW table. But am not using any table control. I made it from dictionary fields. My requirement is i want to double click any one of the field it should open me11n transaction. How to move ahead. I saw few forums thay are giving some solution using Respond to double click option. Can anyone guide me or suggest me how achive this? If its possible then give me an idea.

Thanx in advance

Mohana

4 REPLIES 4

Former Member

Hi

In Field attributes,in display tab select the check box respond for double click.

Regards,

Raghu.

0 Kudos

I have checked the same. But i dont knw how to use this into program? Any idea pls suggest.

Mohana

kesavadas_thekkillath
Active Contributor
0 Kudos

try this,

Go to the pf status, in function keys choose , give the f.code as PICK.

Then in your PAI

data:lv_value type matnr.

data:lv_field type char30.


get cursor field lv_field value lv_value.
if lv_field = 'LV_MATNR'.
set parameter id 'MAT' field lv_value.
call transaction 'MM03' and skip first screen.
endif.

Former Member
0 Kudos

Moderator message - Please do not ask or answer basic questions - thread locked Rob