HP Business BASIC/XL Reference Manual - HP 3000 MPE/iX Computer Systems - Edition 1 (32715-90001)
a- 20
2. The level number out of range in TRIGGER BREAK.
ACTION 1. If a constant is used, change the report definition to use
levels 1 thru 9. If an expression is used, this error is
reported during BEGIN REPORT execution. Verify that all level
number expressions return 0-9. (Level zero cause statement to
be ignored.)
2. Check value used by TRIGGER BREAK. Modify program logic or
TRIGGER BREAK statement to use 1-9.
------------------------------------------------------------------------------------
265 MESSAGE (GRAND) TOTALS statement not active at the level requested.
CAUSE 1. There is no GRAND TOTALS statement in the report and
TOTAL(0,n) is used.
2. TOTAL(L,N) is used, but there is no TOTALS ON statement at
level L.
ACTION 1. Add a GRAND TOTALS statement, or change the TOTAL built-in
function to use a defined level.
2. Add a TOTALS statement at level L, or change the TOTAL
built-in function to use a defined level.
------------------------------------------------------------------------------------
266 MESSAGE Sequence parameter out of range for (GRAND) TOTALS at desired
level.
CAUSE TOTAL(L, N) is used, but fewer than N expressions are being
totalled at level L.
ACTION Count the number of expressions defined at level L and change
the TOTAL call to ensure N does not exceed this number or add
more expressions to the TOTALS ON or GRAND TOTALS statement.
------------------------------------------------------------------------------------
267 MESSAGE WITH number LINES value is negative or greater than page size.
CAUSE 1. The WITH value is less than zero.
2. The WITH value is larger than defined page size.
ACTION 1. Change the WITH clause to use zero or more lines. Check
expressions to ensure that negative numbers are not being used.
2. The WITH value may not be larger than first value to the
PAGE LENGTH command, unless PAGE LENGTH 0 is used. Change the
WITH clause and check expressions used in the WITH clause.
Check PAGE LENGTH command for correct page size specification.
------------------------------------------------------------------------------------
268 MESSAGE OLDCV($) at requested level does not have a BREAK WHEN active.
CAUSE OLDCV(L) or OLDCV$(L) is being used, but level L does not have
a BREAK WHEN statement.
ACTION If level L exists, add a BREAK WHEN statement, or change a
BREAK IF statement into a BREAK WHEN statement. Check the
value of level to ensure the correct level is being indicated.
------------------------------------------------------------------------------------
269 MESSAGE OLDCV($) function does not match control variable data type.
CAUSE 1. OLDCV(L) has been used with a string control variable.
2. OLDCV$(L) has been used with a numeric control variable.
ACTION Make sure that level L is the desired level. Change program
logic to ensure that the correct type is being checked.