PO line item, Effective Unit Price is taking 2 decimal points (refere to attach screen). We have checked in extended properties it’s already set upto 5 decimal points (refere to attach screen)
Can anyone advise me how to change the effective unit price to 5 decimal points.
On the currency master, you will find the decimal places information. Many people make the mistake of using 2’s for all of the decimal places. Especially the general decimals where inventory quantities look.
Another option is to create a UOM conversion to the suppliers UOM. Then select to use the Suppliers Qty. Typically suppliers price their product in larger UOMs (like $/1000 FT, /MMSCF, etc…) to avoid the fractional cents. And also something that inexpensive usually has min purchase Qty, such that those 3rd plus decimal places in the extended cost are insignificant
We have a yarn that we set the IUM to FT, but the cost is fractions of pennies / FT. And the supplier actually sells it by the pound. With 1 LB = 8610 FT
dear @ckrusen, if we update the Currency DecimalsGeneral, DecimalsPrice & DecimalsCost using update sql statement (mentioned below) then it will not get worse?
Update Erp.Currency
SET DecimalsGeneral = 3,
DecimalsPrice = 5,
DecimalsCost = 5
Where Company = ‘EPIC01’ and CurrencyCode = ‘AED’