ACS BR! Error Code Help

Error Number: 0004
Description:

Somthing is too large to fit into a field.

Common Causes:Any number of things, one very common cause is forgetting to zero YTD accumulators.
Common Solutions:
  1. If you have a F12-Program Pause option use it, otherwise press CTRL+A to get your systems Attnention.
  2. Then type "line" and press enter (without quotes)
  3. next type "go [line] step" and press enter
    (replacing [line] with the value returnedfrom previous step)
  4. Press down arrow
  5. type "cnt+1" and press enter
  6. type "list [line]" and press enter
  7. after colon count varibles until you find the[cnt+1]th varible.
  8. (to find out how many to count for a mat abc type "udim(abc)" and press enter)
    (all other varibles count 1 each)
  9. look at the "using 00000" on line [line]" and type "list 00000" and press enter
  10. notice how the form statement intends the varibles to be printed
  11. to find the value of a varible type the varible name and press enter
  12. to find the value of a mat abc type varible type "print mat abc" and press enter
  13. finally when you've discovered the incorrect varible set it to 0 and continue by typing "VARIBLE=0" and pressing enter or if it's say the 3rd in a mat abc type "ABC(3)=0" and press enter.
  14. then type "Go [line] run" and press enter
  15. if your error message comes back up click retry
  16. if it continues to come back up, you'veencountered another error of the sametype or failed to correct the previous error
Notes:

This could be a number too large to fit into a designated field.

For example: attempting to print 5218787.23 where the program allows for only 4.2 digits


ACS Help Home | Error Documentation Home