Table Output Under VAX VMS
Based on the above, here is the change you need to make in VMS to allow table files to be written with more that 132 characters: Locate these two statements in NONMEM's OFILES routine: OPEN (UN(9),FILE=PATH(1:I-1)) OPEN(UN(9),FILE=PATH(1:I-1)) Modify them as follows: OPEN (UN(9),FILE=PATH(1:I-1),RECL=32762) OPEN(UN(9),FILE=PATH(1:I-1),RECL=32762)