home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / database / informix / 1824 < prev    next >
Encoding:
Internet Message Format  |  1992-08-29  |  3.3 KB

  1. Path: sparky!uunet!ogicse!uwm.edu!zaphod.mps.ohio-state.edu!moe.ksu.ksu.edu!ux1.cso.uiuc.edu!bradley.bradley.edu!larry
  2. From: larry@bradley.bradley.edu (L. D. Stratton)
  3. Newsgroups: comp.databases.informix
  4. Subject: message mystery
  5. Message-ID: <1992Aug28.174738.21439@bradley.bradley.edu>
  6. Date: 28 Aug 92 17:47:38 GMT
  7. Article-I.D.: bradley.1992Aug28.174738.21439
  8. Organization: Bradley University
  9. Lines: 67
  10.  
  11.  
  12.  I've tried about everything I can think of to correct this situation 
  13.  but haven't found a solution yet.
  14.  
  15.    After the 'screen record' statement, the following error appears:
  16.  
  17. #  Screen record array "s_plan" has component sizes which either differ
  18. # from the specified dimension of teh array or differ among themselves.
  19. # See error number -2029.
  20.  
  21.   I've double and triple checked the field lengths in the database
  22.   as compared to what is on the screen (it shouldn't matter).  The
  23.   only thing I can see is that it can't handle the double line of 
  24.   data in the array, 8 lines above and the same 8 continued below.
  25.  
  26.    Anyone with an idea???????
  27.  
  28. database cfaplan
  29. screen size 24 by 80
  30. {
  31. GOALS/OBJECTIVES FOR:[f001][f091                                               ]
  32. KEY    GOAL OBJ LINE       GOALS AND OBJECTIVES                PRTY    WHO
  33. [f000][f002][a0][a4][f008                                    ] [a1][f009      ]
  34.                 [a4][f008                                    ] [a1][f009      ]
  35.                 [a4][f008                                    ] [a1][f009      ]
  36.                 [a4][f008                                    ] [a1][f009      ]
  37.                 [a4][f008                                    ] [a1][f009      ]
  38.                 [a4][f008                                    ] [a1][f009      ]
  39.                 [a4][f008                                    ] [a1][f009      ]
  40.                 [a4][f008                                    ] [a1][f009      ]
  41. LINE                                                  START   COMP   RES  STATUS
  42.  NO          HOW                                        DATE   DATE   RQT    %
  43. [a4] [f010                                            ][f003] [f004] [a2] [f006]
  44. [a4] [f010                                            ][f003] [f004] [a2] [f006]
  45. [a4] [f010                                            ][f003] [f004] [a2] [f006]
  46. [a4] [f010                                            ][f003] [f004] [a2] [f006]
  47. [a4] [f010                                            ][f003] [f004] [a2] [f006]
  48. [a4] [f010                                            ][f003] [f004] [a2] [f006]
  49. [a4] [f010                                            ][f003] [f004] [a2] [f006]
  50. [a4] [f010                                            ][f003] [f004] [a2] [f006]
  51. }
  52. end
  53. tables
  54. dept_mstr
  55. plans_mstr
  56. plans_text
  57. attributes
  58. f000 = plans_mstr.pln_key;
  59. f001 = plans_mstr.dept_no;
  60. f002 = plans_mstr.ugm_key;
  61. a0 = plans_mstr.pln_obj_no;
  62. a1 = plans_mstr.pln_prior;
  63. f003 = plans_mstr.pln_start;
  64. f004 = plans_mstr.pln_comp;
  65. a2 = plans_mstr.pln_resource;
  66. f006 = plans_mstr.pln_status;
  67. a4 = plans_text.pln_line_no;
  68. f008 = plans_text.pln_obj_text;
  69. f009 = plans_text.pln_who;
  70. f010 = plans_text.pln_how_text;
  71. f091 = dept_mstr.dept_name;  
  72. instructions
  73.    screen record s_plan[8](pln_line_no, pln_obj_text, pln_prior, pln_who,
  74.                            pln_line_no, pln_how_text, pln_start, pln_comp,
  75.                             pln_resource, pln_status)
  76. ####  ERROR OCCURS HERE, SEE TEXT ABOVE
  77. end
  78.