Table Output Under VAX VMS

From: Alison Boeckmann Date: December 07, 1994 technical Source: phor.com
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.
Dec 01, 1994 Alison Boeckmann Table Output Under VAX VMS
Dec 07, 1994 Alison Boeckmann Table Output Under VAX VMS