cancel
Showing results for 
Search instead for 
Did you mean: 

About note 340238 and field LIKP-FOLAR

Former Member
0 Kudos

We are trying to implement note 340238. It says there: „If the outbound delivery has a subsequent delivery type LIKP-FOLAR…”.

We do understand everything else said in the note, about the Workflow, but all outbound deliveries in our system have no value in the field LIKP-FOLAR, and this includes both replenishment and sales outbound deliveries. I suppose it is the type of inbound delivery that should be created for outbound delivery type, but I cannot find a place in Customizing to set it. Could you please, give us some

information about how to control LIKP-FOLAR field in our outbound deliveries. I can try to give it a value using BADI "LE_SHP_DELIVERY_PROC", but it doesn't say anything about the user-exit in the note, so I guess there is a Customizing solution to this.

Thank you in advance.

Best regards,

Jasna Vračar

SAP Consultant

Accepted Solutions (0)

Answers (1)

Answers (1)

harry_wu
Contributor
0 Kudos

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.

Regards,

Harry Wu

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

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