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: 

Zeroing out inventory nightly

Former Member
0 Kudos

We have a requirement for zeroing out inventory at a particular location on a nightly basis. Currently it's a manual process using MI10. I've been investigating the BAPI_MATPHYSINV_* function modules, and it appears they are capable of doing what we need. However, I was wondering if there's a quicker/easier way of doing this, without the multiple steps of creating inventory documents with BAPI_MATPHYSINV_CREATE_MULT, then BAPI_MATPHYSINV_GETITEMS to retrieve open docs for the materials, then perform a count/post.

Is there a BAPI/FM more similar to MI10 in simplicity? In other words, enter a list of materials/counts and call it... thanks!

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

Check whether fms MB_SELECT_MAT_CREATE_DOC_STD and MB_SELECT_MAT_CREATE_DOC serve your purpose..

In fact take a look at all fms in function group MBIF....

Sri

2 REPLIES 2

Former Member
0 Kudos

Hi,

Check whether fms MB_SELECT_MAT_CREATE_DOC_STD and MB_SELECT_MAT_CREATE_DOC serve your purpose..

In fact take a look at all fms in function group MBIF....

Sri

0 Kudos

Thank you. Do you know where I can find interface documentation and/or sample code for these?