Example: 
Lot size Calculation: 100 
Lot size Production: 60 
  
Default calculation (Variant 1) 
  
The production lot size is only the max. quantity per production order 
if you produce 100 Pcs, the system calculate 60 + 40 Pcs and use the total price 
  
  
Old calculation type (Variant 2) 
  
The production lot size is the multiple of 
if you produce 100 Pcs, the system calculate 2x60 Pcs, but use only the price from 100 Pcs 
  
  
  
Notes 
•If you use Variant 2, then you use the production lot size in wrong way. This variant is only for compatibility available 
•In beas Version 2020.11 and older the system used the "Lot size calculation" 
See Parameter "useCalculationLotSize" 
  
If you work with Variant 1, you don't need to change anything 
If you want to work with Variant 2, you must insert follow code 
  
// Use old calculation for lot size 
function PreCalculationInit 
setvar=lotSizeCalculationType=2 
end function 
  
 |