View previous topic :: View next topic |
Author |
Message |
pgorthi Beginner
Joined: 13 Sep 2004 Posts: 33 Topics: 16
|
Posted: Mon Oct 25, 2004 8:03 am Post subject: how to search more than one string using endeover? |
|
|
Hi,
How to search more than one string using endeover.
Regards,
pgorthi.  |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
Posted: Mon Oct 25, 2004 11:48 am Post subject: |
|
|
pgorthi,
You can use Search-For Utility(3.14) or Extended Search-For Utility(3.15) to search multiple strings
Hope this helps...
Cheers
Kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
 |
Maheshwari Beginner
Joined: 19 Oct 2004 Posts: 21 Topics: 3
|
Posted: Mon Oct 25, 2004 9:30 pm Post subject: |
|
|
pgorthi,
Please modify your SCL as follows for Multiple string search in Endevor.
Code: |
OPTIONS SHOWING TEXT NOSEARCH
WHERE TEXT
( (EQ 'XXXX' COLUMNS 007 072)
OR (EQ 'YYYY' COLUMNS 007 072)
OR (EQ 'ZZZZ' COLUMNS 007 072)
OR (EQ 'AAAA' COLUMNS 007 072)
OR (EQ 'BBBB' COLUMNS 007 072))
.
|
Hope this works .. _________________ Amit |
|
Back to top |
|
 |
pgorthi Beginner
Joined: 13 Sep 2004 Posts: 33 Topics: 16
|
Posted: Tue Oct 26, 2004 3:55 am Post subject: |
|
|
Hi maheshwari,
thanks a lot it is working.
regards,
pgorthi |
|
Back to top |
|
 |
|
|