I was wondering what the correct syntax is for the “starts with” operator. In the technical documentation, I’ve only come across the operator shown in the screenshot below.
Does IFS Report Designer support “starts with” and “doesn’t start with” operators?
I need to add a visible condition to exclude any records where CHARACTERISTIC_DESC
starts with "B36", so they don’t appear in the report.
Here’s what I’ve tried so far, but none of these worked:
contains(tns:CHARACTERISTIC_DESC, 'b-36')
starts-with(tns:CHARACTERISTIC_DESC, b36)
starts-with(CHARACTERISTIC_DESC, b36)
I would appreciate any tips.
Operator | Description |
---|---|
and | Logical-and |
or | Logical-or |
not() | Negation |
= | Equality |
!= | Not equal |
< | Less than |
<= | Less than or equal |
> | Greater than |
>= | Greater than or equal |