COBOL Runtime Error Code – 163 Illegal character in numeric field (Fata
In this post, you’ll learn about the COBOL runtime Error Code 163 and the reason why you are receiving it
COBOL Error Code :
163
Reason for this Error in COBOL
Illegal character in numeric field (Fatal) -By default the value which you enter into a numeric or numeric edited field is checked to ensure that it is numeric. You have entered either nonnumeric characters or uninitialized numerics into numeric or numeric edited fields: these are automatically space filled and are thus classified as nonnumeric items. -You must adjust your code so that no invalid data is used. You can locate the invalid numeric data in your code by setting the +F switch on, and animating your program until you receive this error. You might need to use one of the Compiler directives, BADSIGNS, HOST-NUMCOMPARE, SIGNCOMPARE or SPZERO, to resolve invalid data in numeric fields. See your object COBOL User Guide for details of these directives.
Share this:
Trending Stories
-
Async code smells and how to track them down with... cezarypiatek.github.io
-
Data Normalization vs. Denormalization Comparison (Tim Rottach) couchbase.com
-
All About SQL Server Stored Procedures: Formatting (Erik Darling) youtube.com
-
Integration Tests for Plugin Developers: UI Testing (Maxim Kolmakov) blog.jetbrains.com
-
Reactive monad (Mark Seemann) blog.ploeh.dk
Recent Stories
-
Async code smells and how to track them down with... cezarypiatek.github.io
-
Data Normalization vs. Denormalization Comparison (Tim Rottach) couchbase.com
-
All About SQL Server Stored Procedures: Formatting (Erik Darling) youtube.com
-
Integration Tests for Plugin Developers: UI Testing (Maxim Kolmakov) blog.jetbrains.com
-
Reactive monad (Mark Seemann) blog.ploeh.dk
Leave Your Comment