Sometimes its better to search date fields in Maximo by greater than or less than. The user typically dont want to insert
>
or <
in search fields. There is a simple way to achieve this.
In <tablecol/>
add the an attribute name prepend
For greater than or equal to, just add
prepend=">="
For less than or equal to add
prepend="<="
For example
- Export the application's xml.
- E.g If your date field is
REPORTDATE
. Addprepend
in it like below to search all dates less than or equal to the searched term
<tablecol dataattribute="reportdate"
This will show all records who are less than or equal to selected value.