Skip to page contentSkip to chat
ServiceNow support
    • Community
      Ask questions, give advice, and connect with fellow ServiceNow professionals.
      Developer
      Build, test, and deploy applications
      Documentation
      Find detailed information about ServiceNow products, apps, features, and releases.
      Impact
      Accelerate ROI and amplify your expertise.
      Learning
      Build skills with instructor-led and online training.
      Partner
      Grow your business with promotions, news, and marketing tools
      ServiceNow
      Learn about ServiceNow products & solutions.
      Store
      Download certified apps and integrations that complement ServiceNow.
      Support
      Manage your instances, access self-help, and get technical support.
Unable to use "Move to Top" UI Action on the Sprint Planning tab of the Agile Board - Support and Troubleshooting
  • >
  • Knowledge Base
  • >
  • Support and Troubleshooting (Knowledge Base)
  • >
  • Unable to use "Move to Top" UI Action on the Sprint Planning tab of the Agile Board
KB0823003

Unable to use "Move to Top" UI Action on the Sprint Planning tab of the Agile Board


458 Views Last updated : Apr 8, 2024 public Copy Permalink
KB Summary by Now Assist

Issue

Unable to use "Move to Top" UI Action on the Sprint Planning tab of the Agile Board

Resolution

You may be having this issue due to some of your Global Rank field values for Stories not being populated.
Please take a look at the following Community post, particularly point 2.

https://community.servicenow.com/community?id=community_article&sys_id=aa622adfdb771b000be6a345ca96195e

This will provide you with the steps that you will need to take to resolve this issue.

NEXT STEPS:

Running the following Script in System Definition > Scripts - Background should clear up the issue

 

 

var gr = new GlideRecord('rm_story');
gr.addNullQuery('global_rank');
gr.query();

var rankProcessor = new AgileRankProcessor();
while (gr.next()) {
rankProcessor.generateNewIndex(gr);
gr.setWorkflow(false);
gr.update();
}

 

Make sure to test in a Sub Prod first!


The world works with ServiceNow.

Sign in for more! There's more content available only to authenticated users Sign in for more!
Did this KB article help you?
Did this KB article help you?

How would you rate your Now Support digital experience?

*

Very unsatisfied

Unsatisfied

Neutral

Satisfied

Very satisfied

Very unsatisfied

Unsatisfied

Neutral

Satisfied

Very satisfied

What can we improve? Please select all that apply.

What are we doing well? Please select all that apply.

Tell us more

*

Do you expect a response from this feedback?

  • Terms and conditions
  • Privacy statement
  • GDPR
  • Cookie policy
  • © 2025 ServiceNow. All rights reserved.