What is the function used in NS saved search for case insensitivity? Thanks!
MEMO, memo, MeMo, meMO, etc. Will be captured
a
Automatech
09/04/2020, 6:04 PM
Search filters are natively not case sensitive, so you shouldn't need a function to accomplish that.
I suppose if you wanted case sensitivity you could use a regular expression and a formula.
c
Chloë
09/04/2020, 6:32 PM
@Luis Using a Case When Statement as an example... you can use the "Upper" function. Here is an example formula that ignores the case: CASE WHEN UPPER({status}) LIKE UPPER('paid in full') THEN {status} END
Chloë
09/04/2020, 6:34 PM
for this formula, PAiD iN fUlL, PAID IN FULL, paid in full, paid IN full, etc, etc would all be captured
l
Luis
09/04/2020, 6:47 PM
The value is populated by a WF. NetSuite said that it is case sensitive.
Luis
09/04/2020, 6:52 PM
It worked. thank you. Do you have a reference for this? I think there are a lot of functions that are not included in NS SA but are actually available when used in SS.
c
Chloë
09/04/2020, 7:04 PM
@Luis If I need a function that doesn't show as a possible function to select on a saved search, I do a good old Google search for "Oracle SQL Functions"