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: 

Regarding call transaction 'MIGO'

Former Member
0 Kudos

Hi,

I need to call transaction MIGO from a report, I'm using the following code

FORM user_command USING r_ucomm LIKE sy-ucomm

rs_selfield TYPE slis_selfield.

  • DATA: lt_seltab TYPE STANDARD TABLE OF rsparams WITH HEADER LINE.

CASE r_ucomm.

WHEN '&IC1'.

CLEAR: wa_list.

READ TABLE it_list INTO wa_list INDEX rs_selfield-tabindex.

SET PARAMETER ID: 'MBN' FIELD wa_list-mblnr.

CALL TRANSACTION 'MIGO'.

ENDCASE.

ENDFORM. " USER_COMMAND

I have assigned the form name to the export parameter of

REUSE_ALV_LIST_DISPLAY

i_callback_user_command = 'user_command'

But the subroutine USER_COMMAND is not called when I double click on the list.

Regards,

Sai.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

HI,

change this....

i_callback_user_command = 'USER_COMMAND'

Regards,

Venkatesh

1 REPLY 1

Former Member
0 Kudos

HI,

change this....

i_callback_user_command = 'USER_COMMAND'

Regards,

Venkatesh