Hi, I create a dynamic query using @dblookup and some fields. I added the option for resort the values returned by the @dblookup using @sort command. It works OK except when the query retuns a lot equal values ( I think), the server show this error:
18/04/2004 10:21:23 a.m. HTTP Web Server: Lotus Notes Exception - The formula has exceeded the maximum allowable memory usage.
The view used contain the following fields:
Serie
Hostname
Interface
Type
Boot
Status
Descripcion
when I select the order by Status or Boot I get the error, but with the other fields not.
18/04/2004 10:21:23 a.m. HTTP Web Server: Lotus Notes Exception - The formula has exceeded the maximum allowable memory usage.
This is the command for sort:
Lista := @If(Indice = 1;Lista;@Sort(Lista;[CustomSort];
@If(@Transform( $A ; “Cadena”; @Subset(@Subset(@Explode(Cadena;“|”);Indice);-1) ) >
@Transform( $B ; "Cadena"; @Subset(@Subset(@Explode(Cadena;"|");Indice);-1) );1;
0 )));
The field returned from the view has multiple values using “|” as separator.
could anyone help me ?