
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2020 02:42 AM
Dear all,
This was asked 5 years ago, unanswered. Asking it again to a much wider audience now, hopefully.
Can someone suggest that script include for DOES NOT START WITH and how to call that from a advanced filter? Please don't refer me to threads, even the thread marked as RESOLVED does not have the solution in it. Any help is appreciated.
I know one solution is to create a advanced filter and calling a script include. But I would need the solution instead of the approach.
Any answers?
Regards,
Anish
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2021 05:20 AM
Hi Anish,
it's a while ago, but maybe someone will find this answer helpfull.
The solution from my point of view is to use SQL 'LIKE' operator which work even though it's not documented for GlideRecord:
gr.addQuery('name', 'NOT LIKE', 'StartString%');
Pls mark as helpful if solution works.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2021 07:47 AM
Hi
Do you have an update on this question? Were you able to sort it out?
If you were able to solve your issue, just let me know and mark the best answer as correct and helpful.
This will close this thread and help others to benefit from the outcome.
Thanks & BR
Dirk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2021 05:20 AM
Hi Anish,
it's a while ago, but maybe someone will find this answer helpfull.
The solution from my point of view is to use SQL 'LIKE' operator which work even though it's not documented for GlideRecord:
gr.addQuery('name', 'NOT LIKE', 'StartString%');
Pls mark as helpful if solution works.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2021 06:28 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2023 05:34 PM
Anish, what was that solution??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2023 06:03 PM
Wouldn't be "Does not contains" the equivalent of that?