Condition of Reference Control in the Survey of Employee Form doesn't work on Now Mobile AppDescriptionIssue Description:Condition of Reference Control in the Survey of Employee Form doesn't work on Now Mobile App.Steps to Reproduce Need to Activate the following Plugins with Demo Data:Human Resources Scoped App: CoreEmployee Service Center1. Log in as admin.2. Go to "HR Administration -> Employee Form".3. Create a new Employee Form "Employe Form Test".4. Click the "Form Designer" of the "Employee Form Test" to edit Survey.5. Add a "Reference" Control to the Survey Form.Name: CaseQuestion: HR CaseActive: TrueReference: sn_hr_core_caseCondition: "Number is HRC0000284".6. Click to open the HR Case "HRC0000627".7. Add the "HR Task -> Parent" to the Related List.8. Click the "New" button on the Related List of step 7 to create a new HR Task.HR task type: Collect Employee InputEmploye form: Employee Form TestState: ReadyAssigned to: Abel Tuter.9. Log in as Abel Tuter tot the '/esc' Portal.10. Click the Header Menu "To-dos".11. Select the HR Task created in step 8.12. Select the HR Case in the Employee From Test.13. Only HR Case "HRC0000284" is available per step 5.14. Log in as Abel Tuter to the Now Mobile App.15. Go to "For me -> My To-Dos".16. Select the HR Task created in step 8.17. Click the Short description on the To-Do Screen to open the Survey in a new Screen.18. Select HR Case. Expected behaviorOnly HR Case "HRC0000284" should be available per step 5.Actual behaviorAll HR Cases are available.WorkaroundCustom needs to update one file: sp_angular_provider_1408dd77531323002d96ddeeff7b1271.xmlIt is a widget angular provider file called “mespSurveyReferenceElement”.The code snippet is as below. I did the same change in your instance empjgup. You can test it now.Meanwhile I will find out which team owns this file and ask to do the code change.Old code snippet:var colToSearch = getReferenceColumnToSearch();var q = colToSearch + filterExpression.operator + filterExpression.filterText +'^' + colToSearch + 'ISNOTEMPTY' + getExcludedValues() + "^EQ”;New code snippetvar colToSearch = getReferenceColumnToSearch();//*** start ***var refCondition = scope.ed.refCondition;var q = colToSearch + filterExpression.operator + filterExpression.filterText +'^' + colToSearch + 'ISNOTEMPTY' + getExcludedValues();if (refCondition)q += "^" + refCondition;if (!q.endsWith("^EQ"))q += "^EQ";//*** end ***Related Problem: PRB1455315