- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2024 01:53 PM - edited 05-22-2024 01:56 PM
Hi everyone,
I have a doubt, I'm checking RPA capabilities and wanted to know how should I configure the Filter when using GetMails method of MicrosoftOutlook connector:
I've tested several ways like "subject=RPA Test", "subjectSTARTSWITHRPA" or "RPA Test"; but every time I'm getting the same error message:
If I let that field empty it is able to return the unread emails, but I wanna know how I can filter it.
Thanks in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2024 12:26 PM
I've found the solution with snow team aid:
This is the structure for the filter:
[subject] = 'RPA Test’ -----> This is for equal condition
[subject] <> 'RPA Test' -----> This is for not equal condition.
[subject] > 'RPA' -----> This is for starts with condition.
[subject] < 'RPA' -----> This is for contains condition.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2024 05:03 AM
Hi, I'm running into the same issue, did you resolve this or work around it?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2024 07:28 AM
Hi, I haven't resolved yet, I'm still working on it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2024 12:26 PM
I've found the solution with snow team aid:
This is the structure for the filter:
[subject] = 'RPA Test’ -----> This is for equal condition
[subject] <> 'RPA Test' -----> This is for not equal condition.
[subject] > 'RPA' -----> This is for starts with condition.
[subject] < 'RPA' -----> This is for contains condition.