The "current" object in the Reference Qualifier is not supported on the Mobile Parameter ScreenDescriptionIssue Description:The "current" object in the Reference Qualifier is not supported on the Mobile Parameter Screen.Steps to Reproduce Activate the "Mobile Time Sheets" Plugin, the "Time Card Management" will be activated as well.1. Go to"task_for_task_work" Parameter Screen Input "sys_sg_input.do?sys_id=e7b5503cc71e2010bce463c703c260e6"Remove all Attributes and add the following:SourceFieldName: taskSourceTable: time_card2. Go to "Add from category" Action item "sys_sg_write_back_action_item.do?sys_id=f7e01478c71e2010bce463c703c26045"Enable "Use field values for reference lookup".3. Create a script include "PSGetCI".var PSGetCI = Class.create();PSGetCI.prototype = {initialize: function(gr) {this.gr = gr;},getCIs: function(){if(this.gr.category == 'task_work')return "sys_id=dfed669047801200e0ef563dbb9a712b";},type: 'PSGetCI'};4. Go to "time_card.task" Dictionary "sys_dictionary.do?sys_id=22698059db9d0110feab7d62f3961964%26sysparm_view=advanced"5. Set Reference Qualifier to "javascript: new PSGetCI(current).getCIs();"6. Go to "Time Sheets -> My Time Sheets -> Current Time Sheets"7. Click on the "New" button on the Time Cards Related List.8. Set Category to "Task work".9. Click on the Task lookup, only one task is available.10. Log in Now Mobile App11. Go to "Time Sheets -> My active time sheets"12. Select a pending record if no click on the "+" button to create one.13. Select the "Add from Category" function14. Select "Task work" for Category15. Click the "Next" button.Expected behaviorThere should be only one task available like the desktop filtered by Reference Qualifier.Actual behaviorIt shows all tasksWorkaround The PRB was closed as "Working as Expected" with the following comment:- The "set field values" section needs to be configured properly. After correctly the config, the feature is working as expected. To configure the "Set Field Values" section, it is required to know which fields are used in the Reference Qualifier to build the "current" object. For the example shown in the Steps to reproduce, the reference field "task" has a Reference Qualifier referencing the "current". And in the Reference Qualifier script, the "Category" field is used. You will need to put "Category" = "Input: category" in the "Set Field Values" section. See below screenshots Related Problem: PRB1556715