Back to SPR List Previous Next
Master can hang updating some record types with recnum > 127
Minor Closed - Fixed Found:XS.01.12 27 JAN 2010 Fixed:XS.01.13 27 JAN 2010

DETAILS
 Master can hang updating a record type with a number > 127. An otherwise
 identical record numbered less than 128 will not hang.
EXAMPLE PROGRAM
 RECORD SCHEMA   128  UPAHM2
 KEY FIELDS      KEY(A)
 MAX REC COUNT   123
 DATA LIST
                 ID                               *             (I2)
                 KEY                            *             (I1)
                 DATA                         *             (I2)
 END SCHEMA


 retrieval update
 for i = 1,5
 case is i
 record is 128 (i)
 compute DATA = i
 write "about to save"
 end record
 write "saved"
 end case
 end for
 end retrieval

WORKAROUND
Back to SPR List Previous Next