Skill Level is getting set to 'advanced' instead of 'basic' when adding Skill to User in Manager WorkspaceIssue From platform backend, when adding skills to a user, the skill level is set by 'basic' automatically. When doing the same from the manager workspace, adding the skills to the same user is setting the skill level to 'advanced' by default:1. From manager workspace:/now/workspace/manager/list/params/list-id/817d22b0b3210010ed7fc9c316a8dc6b/tiny/e03336b587015d104fd8326d0ebb35732. Open any user record from group > Navigate to Skills Tab3. In User field select any user and skill as ITCauseGlideRecord().orderBY() API is not supported in client script. The orderBy parameter is not being honoured on the result set. The logic is written in the OOB client script:/nav_to.do?uri=sys_script_client.do?sys_id=51d846fcb3823300290ea943c6a8dc0eResolutionThis behaviour was changed in Tokyo. To fix/workaround, replace the following lines:if (rec.next()) { // GlideRecord.getValue API returns different values in workspace context and // platform context, only by dot-walking we get the same value. var default_level = rec.sys_id; // call directly! with:if (rec.next()) { // GlideRecord.getValue API returns different values in workspace context and // platform context, only by dot-walking we get the same value. var value1=rec.value; var sysid1=rec.sys_id; while(rec.next()){ if(rec.value<value1){ value1=rec.value; sysid1=rec.sys_id; } } var default_level = sysid1; // call directly!