Is there a limitation of 200 records which you can omit?
My customer has a list of 1000 products and wanted to omit 250 records, by hand (I know, this is a timeconsuming issue, but…) it stops omitting after 200 records.
Is this right behaviour?
Is there a limitation of 200 records which you can omit?
My customer has a list of 1000 products and wanted to omit 250 records, by hand (I know, this is a timeconsuming issue, but…) it stops omitting after 200 records.
Is this right behaviour?
known limitation. An IN query is generated for this and those are not unlimitted.
If you really want to ommit that much you could use youre own (tmp)table where you insert the id’s that are ommited and then do a join (in or not in) over that table.