Table Output Under VAX VMS
Recently I asked this question about the installation of NONMEM under theVAX VMS operating system. > Jim Johnson of Glaxo has a problem with output to Table files when> the number of characters exceeds 132. NONMEM crashes with a stack> dump. Several people responded to confirm that the problem exists and to suggest solutions. Thanks to everyone involved.Here is the change that should be made in VMS to allow table files withmore than 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)There is no need to make this change for any other operating system.