Inside OpenERP if you search on a text field you look for substrings, so just look for "X" and "32x" will come up in the results.
If your question is regarding PostgreSQL, what OpenERP does to perform the search is: SELECT ..... WHERE field_name ILIKE '%x%' Look for LIKE and ILIKE in PostgreSQL documentation. If you want to perform a "Search and replace" directly on OpenERP records, it's not possible to do it using the client. Regards, Pedro -------------------- m2f -------------------- -- http://www.openerp.com/forum/viewtopic.php?p=24007#24007 -------------------- m2f -------------------- _______________________________________________ Tinyerp-users mailing list http://tiny.be/mailman/listinfo/tinyerp-users
