Back to SPR List Previous Next
Record types with more than 99 data input lines won't export/import properly
Minor Closed - Fixed Found:XS.01.12 17 FEB 2010 Fixed:XS.01.13 18 FEB 2010

DETAILS
 A data list with more than 99 input line will not export/import because the
 line number is not separated from the variable name.
EXAMPLE PROGRAM
 DATA LIST   (120)
                 KEY                                  3 -     9 (I4)
                 VAR1                                10 -   29 (A20)
            120  VAR120                              10 -   29 (A20)

 but this is what it looks like on WRITE SCHEMA
 DATA LIST   (120)
                 KEY                                  3 -     9 (I4)
                 VAR1                                10 -    29 (A20)
              120VAR120                              10 -    29 (A20)
WORKAROUND
Edit the export to include a space on these lines, or fit the input onto fewer than 100 lines.
Back to SPR List Previous Next