How to fix Dataerror Out of range value for column

Hello guys.
I really need your assistance to fix this out of range value issue. am trying to submit a value on workflow change but am getting this error
“pymysql.err.DataError: (1264, “Out of range value for column ‘committed_total’ at row 1”)”
committed_total is a custom field on parent form not in a child table. am auto summing other custom fields on parent to get committed_total.

Hi,

May we know the app that error is happening in? Is the column stock or custom?

thank you.
it is custom doctype

Traceback (most recent call last):
File “apps/frappe/frappe/app.py”, line 69, in application
response = frappe.api.handle()
File “apps/frappe/frappe/api.py”, line 55, in handle
return frappe.handler.handle()
File “apps/frappe/frappe/handler.py”, line 38, in handle
data = execute_cmd(cmd)
File “apps/frappe/frappe/handler.py”, line 76, in execute_cmd
return frappe.call(method, **frappe.form_dict)
File “apps/frappe/frappe/init.py”, line 1473, in call
return fn(*args, **newargs)
File “apps/frappe/frappe/client.py”, line 181, in set_value
doc.save()
File “apps/frappe/frappe/model/document.py”, line 312, in save
return self._save(*args, **kwargs)
File “apps/frappe/frappe/model/document.py”, line 363, in _save
self.db_update()
File “apps/frappe/frappe/model/base_document.py”, line 463, in db_update
frappe.db.sql(
File “apps/frappe/frappe/database/database.py”, line 187, in sql
self._cursor.execute(query, values)
File “env/lib/python3.8/site-packages/pymysql/cursors.py”, line 148, in execute
result = self._query(query)
File “env/lib/python3.8/site-packages/pymysql/cursors.py”, line 310, in _query
conn.query(q)
File “env/lib/python3.8/site-packages/pymysql/connections.py”, line 548, in query
self._affected_rows = self._read_query_result(unbuffered=unbuffered)
File “env/lib/python3.8/site-packages/pymysql/connections.py”, line 775, in _read_query_result
result.read()
File “env/lib/python3.8/site-packages/pymysql/connections.py”, line 1156, in read
first_packet = self.connection._read_packet()
File “env/lib/python3.8/site-packages/pymysql/connections.py”, line 725, in _read_packet
packet.raise_for_error()
File “env/lib/python3.8/site-packages/pymysql/protocol.py”, line 221, in raise_for_error
err.raise_mysql_exception(self._data)
File “env/lib/python3.8/site-packages/pymysql/err.py”, line 143, in raise_mysql_exception
raise errorclass(errno, errval)
pymysql.err.DataError: (1264, “Out of range value for column ‘committed_total’ at row 1”)

What is the datatype of committed_total and the datatype(s)s of the columns that are being summed? It may help to say show the code that autosums the columns as well.

Data type of committed_total is Currency

This issue has been resolved. mistake was made in a field data type