‎2010 Sep 07 12:39 PM
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
‎2010 Sep 07 1:11 PM
Hi
In Field attributes,in display tab select the check box respond for double click.
Regards,
Raghu.
‎2010 Sep 07 1:15 PM
I have checked the same. But i dont knw how to use this into program? Any idea pls suggest.
Mohana
‎2010 Sep 07 1:47 PM
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.
‎2010 Sep 07 2:20 PM
Moderator message - Please do not ask or answer basic questions - thread locked Rob