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: 

MM - Creating a new tab in MIGO Transaction

Former Member
0 Kudos
129

Hi Gurus

I am facing a problem to create a *new tab in transaction MIGO*.

The scenario is like, the "item text" tab in ME21n/ME22n which contains some text, needs to be mapped in MIGO under a new tab.

I checked with BADI "MB_MIGO_BADI" but unable to find the exact interface to implement.

Thanks in advance

1 ACCEPTED SOLUTION

Former Member
0 Kudos
46

Hi Sandy

Check the method PBO_DETAIL of badi MB_MIGO_BADI: for Item level screen add your screen to that code .

1> NEW TAB for Item level in MIGO

E_CPROG = 'ZSCREEN'. '' Screen should be a container

E_DYNNR = '1001'. "" Screen No

E_HEADING = 'ITEM TEXT '. Heading

2 > Creating Standard text :

using se75 cretae standard text and text objetcs as MIGO is not haing as if in PO .

Create an entry using the DOCUMENT NO and ITEM NO combination and save the cretaed text using Create_text

entry would be store in STXH table .

3 > Use BADI MB_DOCUMENT_BADI* : For creatign actual text for item level mrthod 😘 MB_DOCUMENT_BEFORE_UPDATE* .

Hope it will be help full .

Thanks & Regards

Swapnil Kamble

1 REPLY 1

Former Member
0 Kudos
47

Hi Sandy

Check the method PBO_DETAIL of badi MB_MIGO_BADI: for Item level screen add your screen to that code .

1> NEW TAB for Item level in MIGO

E_CPROG = 'ZSCREEN'. '' Screen should be a container

E_DYNNR = '1001'. "" Screen No

E_HEADING = 'ITEM TEXT '. Heading

2 > Creating Standard text :

using se75 cretae standard text and text objetcs as MIGO is not haing as if in PO .

Create an entry using the DOCUMENT NO and ITEM NO combination and save the cretaed text using Create_text

entry would be store in STXH table .

3 > Use BADI MB_DOCUMENT_BADI* : For creatign actual text for item level mrthod 😘 MB_DOCUMENT_BEFORE_UPDATE* .

Hope it will be help full .

Thanks & Regards

Swapnil Kamble