hi,
I am having a problem when trying to use a numeric field in a input command.
when I run the program below, the user id exhibited on the screen is 5 bytes long, instead of 4 bytes as specified in the ‘‘define data’’.
what should I do in order to have a numeric 4-byte long field on the screen, please?
define data
1 w-userid (n4)
end-define
input 'Inform Userid:' w-userid (ad=u)
thanks.