Report list filtering on table and title not working using jvar_search_table parameter.Issue If you use the report_home.do URL parameter jvar_search_table to open a list of reports for a specific table eg https://<instance_name>.service-now.com/report_home.do?jvar_search_table=<table_name>. You cannot then manually add an extra title filter.ReleaseAll ReleasesCauseWhen you add a jvar_search_table=<table_name> parameter, the search processor is correctly searching by table name only. But when you add an extra keyword manually through UI, e.g. "active", then the processor will search by table_name and keyword active as the title.In other words, when you mix jelly http request params (jvar_search_table, sysparm_query) and angular params via UI, things become messy, the table name becomes also a keyword to be searched in the title, and if there are no reports with <table_name> in the title, so you get back nothing.ResolutionThis is the expected behavior of the Platform. Note: If you are having any report with the title as "change_request" and "Active" then you will get the result else No Result.Related LinksThe below scenario will not return any results. 1) Goto URLhttps://<instance>.service-now.com/report_home.do?jvar_search_table=change_request 2) In the search box in the top right, type "Active" and press ENTER.3) Zero reports appear in the "All" list even though there are reports that have that word(Active) in their title. Reason: Processor search for keyword change_request and Active as title.