How to search for not equal

Hi,

I need to search a not equal condition. How do I do it?
for eg.
I want records;
status != ‘100’

where status is not equal to 100.
Thanks in advance

Regards,
Hareendra

You have to use “!100”. So in a script that will look like:

if (controller.find()) {
	status = "!100";
	controller.search();
}