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: 

MIGO Screen use Item OK Field in User Exit

Former Member
0 Kudos

Hi Everybody,

I want to use MIGO "Item OK" field in User Exit. Which User Exit can use.

i,e, I want Check "ITEM OK" field dick or undick by user exit.

anybody please tell me.

Thanks

S.Muthu

2 REPLIES 2

Former Member
0 Kudos

Hi,

Try the BADI, MB_MIGO_BADI.

Regards,

Renjith Michael.

Former Member
0 Kudos

Hello,

You can debug the standard code searching for user-exits.

Set breakpoints in statements. For example if you are looking for call customer-fuction, click on:

Breakpoint --> Breakpoint at --> Breakpoint at Statement

and then here write: CALL CUSTOMER-FUNCTION

Then pressing F8 it will go directly to the next breakpoint (user exit for this transaction). Verify the user exit's parameters to see if you have access to "ITEM OK".

I hope it will help you.