Integer field is changing the entered value to 2,147,483,647 by default.Issue When an integer value longer than 10 characters is entered in an integer type field, the value is changing to 2,147,483,647 by default after saving the form. ReleaseAllCauseThe integer type field can accept a maximum value of 2,147,483,647. If the user is using a larger value than this, they should use the field type as 'Long'. ResolutionThe integer type can accept a maximum value of 2,147,483,647. The customer needs to use Long for greater values. Please note the customer cannot convert an existing integer field to Long since the underlying data type for both is different(Integer and String). If you decide to use Long type, then a new dictionary needs to be created. https://docs.servicenow.com/bundle/paris-platform-administration/page/administer/reference-pages/reference/r_FieldTypes.html