Hi,
generic buffered tables only store parts in the buffer that were queried or rather are queried. Thus the WHERE clause of an SQL stmt defines which parts of a table to store, when a part is read for the first time.
An example:
A table has 3 key fields. I execute a first query and parametrize two of the key fields. Now a generic region is loaded into to buffer corresponding to the two parametrized key fields.
If I execute another query attaching only the first key field within my query, what will happen, if we assume that the key field is parametrized with the same content like in the first query?
Will there be one big and one smaller region holding the same data like the big one?