home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!ogicse!uwm.edu!zaphod.mps.ohio-state.edu!moe.ksu.ksu.edu!ux1.cso.uiuc.edu!bradley.bradley.edu!larry
- From: larry@bradley.bradley.edu (L. D. Stratton)
- Newsgroups: comp.databases.informix
- Subject: message mystery
- Message-ID: <1992Aug28.174738.21439@bradley.bradley.edu>
- Date: 28 Aug 92 17:47:38 GMT
- Article-I.D.: bradley.1992Aug28.174738.21439
- Organization: Bradley University
- Lines: 67
-
-
- I've tried about everything I can think of to correct this situation
- but haven't found a solution yet.
-
- After the 'screen record' statement, the following error appears:
-
- # Screen record array "s_plan" has component sizes which either differ
- # from the specified dimension of teh array or differ among themselves.
- # See error number -2029.
-
- I've double and triple checked the field lengths in the database
- as compared to what is on the screen (it shouldn't matter). The
- only thing I can see is that it can't handle the double line of
- data in the array, 8 lines above and the same 8 continued below.
-
- Anyone with an idea???????
-
- database cfaplan
- screen size 24 by 80
- {
- GOALS/OBJECTIVES FOR:[f001][f091 ]
- KEY GOAL OBJ LINE GOALS AND OBJECTIVES PRTY WHO
- [f000][f002][a0][a4][f008 ] [a1][f009 ]
- [a4][f008 ] [a1][f009 ]
- [a4][f008 ] [a1][f009 ]
- [a4][f008 ] [a1][f009 ]
- [a4][f008 ] [a1][f009 ]
- [a4][f008 ] [a1][f009 ]
- [a4][f008 ] [a1][f009 ]
- [a4][f008 ] [a1][f009 ]
- LINE START COMP RES STATUS
- NO HOW DATE DATE RQT %
- [a4] [f010 ][f003] [f004] [a2] [f006]
- [a4] [f010 ][f003] [f004] [a2] [f006]
- [a4] [f010 ][f003] [f004] [a2] [f006]
- [a4] [f010 ][f003] [f004] [a2] [f006]
- [a4] [f010 ][f003] [f004] [a2] [f006]
- [a4] [f010 ][f003] [f004] [a2] [f006]
- [a4] [f010 ][f003] [f004] [a2] [f006]
- [a4] [f010 ][f003] [f004] [a2] [f006]
- }
- end
- tables
- dept_mstr
- plans_mstr
- plans_text
- attributes
- f000 = plans_mstr.pln_key;
- f001 = plans_mstr.dept_no;
- f002 = plans_mstr.ugm_key;
- a0 = plans_mstr.pln_obj_no;
- a1 = plans_mstr.pln_prior;
- f003 = plans_mstr.pln_start;
- f004 = plans_mstr.pln_comp;
- a2 = plans_mstr.pln_resource;
- f006 = plans_mstr.pln_status;
- a4 = plans_text.pln_line_no;
- f008 = plans_text.pln_obj_text;
- f009 = plans_text.pln_who;
- f010 = plans_text.pln_how_text;
- f091 = dept_mstr.dept_name;
- instructions
- screen record s_plan[8](pln_line_no, pln_obj_text, pln_prior, pln_who,
- pln_line_no, pln_how_text, pln_start, pln_comp,
- pln_resource, pln_status)
- #### ERROR OCCURS HERE, SEE TEXT ABOVE
- end
-