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.
Queries on Agile 1.0 to 2.0 Migration - Support and Troubleshooting
  • >
  • Knowledge Base
  • >
  • Support and Troubleshooting (Knowledge Base)
  • >
  • Queries on Agile 1.0 to 2.0 Migration
KB0788066

Queries on Agile 1.0 to 2.0 Migration


507 Views Last updated : Apr 7, 2024 public Copy Permalink
KB Summary by Now Assist

Issue

During the Agile 1.0 to 2.0 migration, as part of the "Delete Customizations" step the customer has the below queries,

->Upon adding the property "com.snc.sdlc.scrum.pp.delete_customer_updates", the property got vanishes from the sys_properties table

->Deleting the entries from the sys_update_xml table means the customizations are rolledback and ready for the upgrade.

 

Release

Any version

Resolution

Query1:

Whether the property "com.snc.sdlc.scrum.pp.delete_customer_updates" gets deleted after creating the same as a part of the "Delete the customizations" step.

Response:

Business rule "deleteCustomerUpdatesForScrumApplication" will actually delete the property once it do it's job of deleting the entries from the sys_update_xml table,

var property = "com.snc.sdlc.scrum.pp.delete_customer_updates";
var properties = new GlideRecord("sys_properties");
properties.addQuery("name", property);
properties.query();
if (properties.next()){
properties.deleteRecord();
gs.log("[ScrumPP] Deleted system property " + property);
}

Query2:

If deleting the records from the sys_update_xml is considered to be rolling back the customizations.

Response:

The BR has the below call on the sys_update_xml table,

var records = new GlideRecord("sys_update_xml");
records.addQuery("name", recordsToDelete);
records.query();
var count = 0;
while (records.next()) {
gs.log("[ScrumPP] Deleting " + records.name + " from update set " + records.update_set.name);
records.deleteRecord();
count++;
}

 

function getRecordsToDelete() {
var recordsToDelete = [
"sys_ui_list_control_3f85b6907f00000135a05e41c7547354",
"sys_ui_list_control_3f8607b47f0000012aaff213c654be45",
"sys_ui_list_control_6daa4a777f000001007607d32a0b44f0",
"sys_ui_list_control_7d3d1f917f000001798fc58141419300",
"sys_ui_list_control_aa8a1aae7f000001432d0e1142a85c2d",
"sys_ui_list_control_aa8a4bbe7f00000139552678204587f7",
``
``
``
``
"sys_script_8cd24091ef52200099620fa3f8225619",
"sys_script_9f298c85efa1200099620fa3f82256ba"
];

return recordsToDelete;



Based on the above logic, it will try to match the entries defined in the "getRecordsToDelete" function on the sys_update_xml table and it will delete those entries correspondingly.

Upon the records being deleted from the sys_update_xml, when we proceed with installing the "Install Agile Development 2.0." plugin, it will ensure to update the metadata to the latest code.


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.