Default update set in scoped app is showing dafult set that is in application global from update set pickerSummaryThe following KB details an issue when a user selects a scoped app in the application picker to find that the default update set is not reflecting the correct scope. The cause for this issue occurring is unknown but the issue is controlled at the user preference level.InstructionsThe issue will usually manifest itself with specific users as the issue is not a global issue for all. To identify this do the following: (Updated) In order to identify issue: Go to `sys_app` > search for the name of the app > copy the app sys_id2. Go to `sys_user_preference` table3. Search for name “updateSetForScope<app id>” replace <app id> with the `sys_id` of the application 4. Copy the “value” field5. Search the `sys_update_set` table for the update set with the “Sys Id” of the value that you just copied6. If the `application` column of the update set is not the name of your scoped application, then this KB article will be able to help you resolve your issue. (Updated) In order to resolve issue: 1. Search in filter navigator for “Scripts - Background”2. Paste in the “Run Script” box and replace “<app id>” with the sys_id of the application. var appId = "<app id>";gs.getUser().setPreference("updateSetForScope" + appId, "");3. Make sure that the script is running in scope “global”, Run the script.4. Go to the settings gear in the top right corner of the screen5. Go to the “Developer” sidebar item6. Change the Application field to global, then back to the application7. Notice the Update Set should now be set to the Default update set of the app which has the name: “Default [App Name]” Old Steps to Identify and Fix Query sys_user_preferenceIn your query look for all user preferences where name contains updateSetForScope. If you know the user that is seeing this behavior also add the query where user is the name of the user who is having the issue.In the result set if you did are not able to narrow down the user add the user field.Need to now obtain the sys_id of the sys_app record for the scoped application that is having the issue.go to sys_app > search for the name of the app > copy the sys_idIn the result set from step 3 look for a record that has the sys_id of the scoped app that is having the issue (should look something like updateSetForScope0e9309a6139f76405d16b4622244b0d0In the value field of the record there will be another sys_id which should be the sys_id of the local update set for the default update set in the scoped application. If the sys_id is the sys_id of anything other than the sys_id of the local update set sys_id of the scoped application that you are in, here lies the issue.Delete the record(s) from sys_user_preferenceClear the instance cacheLog out/log back in as the users who were affected and now select the application picker for the scoped app that was having the issue. The default update set should now display properly in the right scope. The value in this user preference is designed to point at the update set that has been most recently used