In UI Builder (Rome) - Data Resource using Context Property is returning wrong resultsDescriptionUI Builder (Rome) - Data Resource using Context Property (Page parameters) is returning wrong resultsSteps to Reproduce 1. Go to the Task table, and find one record, which has a "Service" associated.Note the sys_id of the Service.2. Associate this Service to one more Task record. (Make sure only 2 Task records have this Service [Just to understand the Problem better])3. Create a new Workspace experience ( if not present)Refer: https://docs.servicenow.com/bundle/rome-application-development/page/administer/ui-builder/task/create-experience.html4. Create a page, and add a page property to this page. Give it a name as "serviceid" (as an example) and put the value as the sys_id of the Service.Refer : https://docs.servicenow.com/bundle/rome-application-development/page/administer/ui-builder/task/create-page.html5. Click on the DB icon on the left pane for the Data resources6. Click on add button, and add the Data resource for 'Lookup fields'. (search Lookup in the search and select the ones under Global)7. Once selected, select table as Task8. Hover over On the 'Edit conditions' field, and click on the cylindrical DB icon9. Then click the Edit conditions, and on the last part of the operand, click the DOB icon10. On this condition builder, select 'Service.sys id" "Is" "@context.props.sysIdParam"Refer:https://docs.servicenow.com/bundle/rome-application-development/page/administer/ui-builder/task/state-parameters.htmlThis is to search the Tasks where the Service.sys_id will match the page property sys_id, which we selected and had associated only 2 Tasks in the first steps and second steps.11. Once this is done, click Apply. Then observe the data on the rightmost pane of the Data Resources sectionExpected: Returned JSON object should return only 2 recordsActual: It is returning all the other records except these 2.12. Now again, On this condition builder, Click (x) to remove the existing condition and select 'Service.sys id" "Is Not" "@context.props.sysIdParam"This should search all the Tasks where the Service.sys_id will not match the page property sys_id.13. Once this is done, click Apply. Then observe the data on the rightmost pane of the Data Resources sectionExpected: Returned JSON object should return all the other records except these 2.Actual: It is returning the 2 records.WorkaroundThis problem is currently under review. You can contact ServiceNow Technical Support or subscribe to this Known Error article by clicking the Subscribe button at the top right of this article to be notified when more information becomes available.Related Problem: PRB1533106