Table Output Under VAX VMS

2 messages 1 people Latest: Dec 07, 1994

Table Output Under VAX VMS

From: Alison Boeckmann Date: December 01, 1994 technical
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)

Table Output Under VAX VMS

From: Alison Boeckmann Date: December 07, 1994 technical
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.