Hi,
I have cobol program that run two time one with NetExpress and with server Express
the compiler directive are the same:
& compilazione ambiente sviluppo
copyext",cbl,cpy,cbl,cpy"
osext"cbl"
assign"external"
ans85
noosvs
recmode"osvs"
sign-fixup
vsc2"2"
list()
setting
ibmcomp
& flag"vsc2"
omf"gnt"
comp
notrunc
checkdiv"os390"
anim
bound
ssrange
nocmpr2
hostnummove
hostnumcompare
hostarithmetic
nosignfixup
checknum
the var:
01 a pic +9(3).
01 b pic 9(5).
server express:
move a to b
give "Illegal character in numeric field "
on net Express it work
Which directive should I use in Nets compiler for get same error of server express?
thank