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

Call MIGO transaction from program

Former Member
0 Likes
3,886

Hi Experts,

     I am trying to call transaction MIGO with PO number. I am using below code for it. But it is calling MIGO transaction with parameters values.

PARAMETERS p_ebeln type ekko-ebeln.

SET PARAMETER ID: 'BES' FIELD p_ebeln,
                                     'BEP' FIELD '00010'.


CALL TRANSACTION 'MIGO'.

what is the wrong in the above code?

Thanks in advance.

Regards,

Suresh.

1 ACCEPTED SOLUTION
Read only

madhu_vadlamani
Active Contributor
1,982

Hi Suresh ,

You can not use in a simple way like this for this transaction.Try to use

1. SUBMIT MB_CALL_MIGO_DIALOG ,2. CALL FUNCTION 'MIGO_DIALOG'

Regards,

Madhu.


3 REPLIES 3
Read only

Former Member
Read only

madhu_vadlamani
Active Contributor
1,983

Hi Suresh ,

You can not use in a simple way like this for this transaction.Try to use

1. SUBMIT MB_CALL_MIGO_DIALOG ,2. CALL FUNCTION 'MIGO_DIALOG'

Regards,

Madhu.


Read only

0 Likes
1,982

Thaks Madhu.