‎2007 Oct 23 7:23 AM
I have a modulepool program. Now I want to make it interactive. Means If I click one field it will open new table or any particular transaction. So how can I do this? Plz suggest. Its urgent.
Regards
Message was edited by:
sap india
‎2007 Oct 23 7:36 AM
Hi,
You need a create a Push Button.
Assign OK code to it.
Handle USER COMMAND/OK CODE.
CASE L_OKCODE.
WHEN 'NEW'.
CALL TRANSACTION SE16.
ENDCASE.Best regards,
Prashant
‎2007 Oct 23 7:36 AM
Hi,
In PAI of module pool , under user command module write this code :
if ok_code = '&IC1' , " Function code for double click
call transaction mm01.
endif.
Reward points if helpful.
Regards,
Hemant