Skip to main content
Solved

How to export Saved Search list

  • October 11, 2019
  • 2 replies
  • 643 views

Forum|alt.badge.img+3
  • Do Gooder (Customer)
  • 5 replies
We're upgrading to IFS 10 from IFS 8. I need to verify all the saved searches came through intact. If I navigate "My Administration" -> "Saved Searches", I can see the list. How do I export it so that I can compare the IFS 8 list to the IFS 10 list?

Alternatively, what table or view can I use to see this information in SQL?

Best answer by JULIAN

If you just need a list of search names to compare then below should do the trick:

select substr(p.profile_section,
instr(p.profile_section, 'SavedSearches/') + 14,
100) as "Search Name"
from ifsapp.fndrr_client_profile_value p
where p.profile_section like '%SavedSearch%'
and p.profile_entry = 'CONDITION'
and ifsapp.fndrr_client_profile_api.Get_Owner(p.profile_id) = '&UID'

2 replies

JULIAN
Hero
Forum|alt.badge.img+9
  • Hero
  • 75 replies
  • Answer
  • October 11, 2019
If you just need a list of search names to compare then below should do the trick:

select substr(p.profile_section,
instr(p.profile_section, 'SavedSearches/') + 14,
100) as "Search Name"
from ifsapp.fndrr_client_profile_value p
where p.profile_section like '%SavedSearch%'
and p.profile_entry = 'CONDITION'
and ifsapp.fndrr_client_profile_api.Get_Owner(p.profile_id) = '&UID'

Forum|alt.badge.img+3
  • Author
  • Do Gooder (Customer)
  • 5 replies
  • October 15, 2019

I wasn’t able to get the Condition and UID clauses to work, but without them, I was able to get a list of all saved searches , which I exported to Excel.  The user supplied 4 names that were distinctive enough that I could match them up to her Profile_ID and complete the task.  For anyone following this, I had to change “ifsapp” to what our company calls it.

Thanks, Julian!