cancel
Showing results for 
Search instead for 
Did you mean: 

MB1B Movement 323 Outbound Delivery Inbound Delivery

0 Kudos

Hello,

I try to execute 2 flows in order to transfer stock from one SL to another SL.

The first flow is in status unrestricted used.

With the transaction MB1B I am able to create an outbound delivery.

When I do the PGI, an inbound delivery is generated automatically.

Everything is OK.

The second flow is in status Logistic Blocked.

With the transaction MB1B I am able to create an outbound delivery.

When I do the PGI, no inbound delivery is created !

That's my problem !

Could you help me to find what is missing in my customizing please ?

Test Case :

MB1B

I use movement type 313 for flow in unrestricted used.

I use movement type 323 for flow in logistic blocked.

Fill the plant, the SL of departure and the SL of arrival.

An outbound delivery is generated.

Why, after the PGI, no inbound delivery is generated in the SL of arrival (for the flow with mvt 323) ?

Thanks a lot

Matthieu

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi

I think that you will find that mvt type 323 is for 'Q' stock and 325 is for Blocked?

Frenchy

harry_wu
Contributor
0 Kudos

Hi Matthieu,

As I replied in the message:

As mentioned in note 340238, if you want to create inbound delivery via

work flow, you have to fill likp-folar. To fill likp-folar, you have to

define subsequent movement (customizing in T156n).

See the coding below:


Main Program     SAPMM07M
Source code of   MM07MFS0_SD_FOLGEBEWEGUNGSART_
.....
               l_xmseg_folgebewegung LIKE mseg.

        SELECT SINGLE * FROM t156n
                        WHERE fcode = 'SU'
                          AND bwart = xmseg-bwart.
        IF sy-subrc IS INITIAL.
         l_xlk03-fobwa = t156n-bwart_next.
         ELSE.
           CLEAR l_xlk03-fobwa.
         ENDIF.
.....

Here, if subsequent movement is defined in T156n, XKOMDLGN-FOBWA will be

filled. Only if XKOMDLGN-FOBWA is set and is different from the

movement type(BWART) , system will fill LIKP-FOLAR.

So, please set subsequent movement for movement type 323 as same as

movement 313.

regards,

Harry

Edited by: Harry Wu on Sep 8, 2010 6:37 AM