next up previous contents index
Next: Completeness of Control Examinations Up: Summary of Mistakes Previous: Established Complications I

Established Complications II

  The module spkomp2.prg uses four lists to temporarily store the information for the actual quarter and year. At the end of a quarter, the two lists containing the quarter's data are deleted correctly, but at the end of a year, the quarter lists are deleted again instead of the year's lists. Changing line 205 and 206 in this module from

null = afill(q_treffer, 0)
null = afill(q_umfang, 0)

to

null = afill(j_treffer, 0)
null = afill(j_umfang, 0)

removes this bug . Another failure can be produced if only empty sets of data are entered into the table neuropat. This causes the statistic to create an output for the appropriate period of time which consists only of zerosgif.



Ingo Melzer
Mon Aug 5 15:12:01 MET DST 1996