cancel
Showing results for 
Search instead for 
Did you mean: 

EWM rounding during WT split

Former Member
0 Kudos

Hi, experts,

need advice or solution for next case:

1. Packaging Specification created for product

2. Product Quantity Classification for putaway filled

3. Rounding after split is on

4. During Putaway with Deconolidation:

System find right Packaging Specification but during split WT not round quantity to whole number.

Below on screen shots quantity 69991, it's equal 27,9964 CAR, so how to force system round quantity to nearest whole number?

Packaging Specification:

Thx in advance!

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

There  programm error in:

FG: /SCWM/PUT_BIN_DET

Incl: /SCWM/LPUT_BIN_DETF89

DATA: lv_frac             TYPE p DECIMALS 2.

*********************************

*           Runden auf ls_ps_level_int-TOTAL_QUAN (TOTAL_UNIT)

*           Mengenumrechunung fehlt

            lv_frac  = FRAC( lv_qty / ls_ps_level_int-total_quan ).

              IF lv_frac IS NOT INITIAL.

                lv_qty = lv_qty - lv_frac * ls_ps_level_int-total_quan.

              ENDIF.

Try to customize this

Answers (0)