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

Enhancement after document post.

Former Member
0 Likes
406

hi gurus,

I am new in SAP field. I have got got my object related with MIGO transaction.

My requirement is "Once goods receipt for movement type 101 is posted ,

goods receipt for movement type 501 should be posted"

MEANS goods receipt for 501 should be posted after posting of 101.

This posting of 501 should be an enhancement .

Can you plz tell me how to do it?

Using Badis, user exits or enhancement points.

Thanx in advance....

Plz help

hi gurus,

I am new in SAP field. I have got got my object related with MIGO transaction.

My requirement is "Once goods receipt for movement type 101 is posted ,

goods receipt for movement type 501 should be posted"

MEANS goods receipt for 501 should be posted after posting of 101.

This posting of 501 should be an enhancement .

Can you plz tell me how to do it?

Using Badis, user exits or enhancement points.

Thanx in advance....

Plz help

1 REPLY 1
Read only

Former Member
0 Likes
328

hi,

Create a program which will post a goods movement by BAPI -


'BAPI_GOODSMVT_CREATE'.

in this program keep a wait of say 10 seconds and then import required parameters from the 101 posting.

u can create an implementeation of badi 'MB_MIGO_BADI' and in the post_document method, submit the program by which you can post the goods movement 501 also exporting required parameters for posting 501 movemnt.

reward points if it helps.