Back to SPR List Previous Next
Modifying a variable in STANDARD SCHEMA can effect another variable in that schema
Minor Closed - Fixed Found:XS.01.12 12 FEB 2010 Fixed:XS.01.13 02 FEB 2010

DETAILS
 Modifying a standard schema can effect references to that variable in later
 records. In the schema clip below, after VAR1 has its range changed then a
 write schema will alter the data type of VAR1 to A10.
EXAMPLE PROGRAM
 STANDARD SCHEMA
 DATA LIST
                 VAR1                             *             (I1)
                 VAR2                             *             (I1)
                 VAR3                             *             (A10)
 VAR RANGES      VAR1                             (0 1)
 END SCHEMA

 c
 c Modify standard schema
 c
 STANDARD SCHEMA   /LOCK
 VAR RANGES      VAR1                            (0 2)
 END SCHEMA
WORKAROUND
Back to SPR List Previous Next