Amount Rounding Issue

dynamics_prasanthdynamics_prasanth Member Posts: 153
Hi Experts,
Is it possible to change the amount/invoice rounding precisions, if some posted entries already exist?

Thanks in Advance


"Our knowledge is a receding mirage in an expanding desert of ignorance"

Comments

  • MalajloMalajlo Member Posts: 294
    You can change precision, but existing entries/amounts will not be modified.
  • dynamics_prasanthdynamics_prasanth Member Posts: 153
    Thank You. But I am receiving the following error when I try to change the Invoice Rounding Precision in General Ledger Setup because the value "1" was set initially.

    "Inv.Rounding Prceision(LCY) must be rounded to the nearest 1."

    Can anybody tell me the a solution for this.
  • MalajloMalajlo Member Posts: 294
    You have to change Amount rounding precision first.
    Inv. Rounding Precision (LCY) - OnValidate()
    IF "Amount Rounding Precision" <> 0 THEN
      IF "Inv. Rounding Precision (LCY)" <> ROUND("Inv. Rounding Precision (LCY)","Amount Rounding Precision") THEN
        ERROR(
          Text004,
          FIELDCAPTION("Inv. Rounding Precision (LCY)"),"Amount Rounding Precision");
    
Sign In or Register to comment.