Application Development and Automation 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: 
Read only

how to make it interactive?

Former Member
0 Likes
443

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

2 REPLIES 2
Read only

Former Member
0 Likes
412

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

Read only

Former Member
0 Likes
412

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