Conflict in number of buffers

Kladkul

Member
Hello,

I'm getting the:

Conflict in number of buffers for QUERY brw-table from previous use. (3325) ** Could not understand line. (196)

Here's something similiar to what I'm doing (easier to show then explain :o) :

Code:
ASSIGN tgl-1. 
CLOSE QUERY brw-table. 
IF tgl-1 THEN DO: 
     OPEN QUERY brw-table FOR EACH table NO-LOCK WHERE 
           blah.blah
           BY blah.
END. 
ELSE DO: 
     OPEN QUERY brw-table FOR EACH table NO-LOCK WHERE 
             another.another
             BY another.
END. 
APPLY "VALUE-CHANGED":U TO brw-table.

Doesn't progress generate the additional buffers on its own?
 
Back
Top