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.
Export "Active Transactions (All Nodes)" on v_cluster_transaction table fails with 0 rows - Known Error
  • >
  • Knowledge Base
  • >
  • Known Error (Knowledge Base)
  • >
  • Export "Active Transactions (All Nodes)" on v_cluster_transaction table fails with 0 rows
KB0676116

Export "Active Transactions (All Nodes)" on v_cluster_transaction table fails with 0 rows


2249 Views Last updated : Jan 28, 2024 public Copy Permalink
KB Summary by Now Assist

Description

Administrators are unable to export the results from "Active transactions (All nodes)" into a report using the List menu "Export" to XML, excel, csv, json, etc.

Export 0

Steps to Reproduce

  1. Go to active Transactions (all nodes) list.
    2. Right click on node id
    3. Choose export from list
    4. Export to excel, CSV, or any other format available from the list menu
    5. Download the export

    You will see the report only contains the header.

    No rows exported

Workaround

Instead of using the list view to export the data, open the the v_cluster_transaction list directly (full frame/outside the nav_to.do frame) and export directly from the URL by adding the format at the end of the URL.

e.g <instance>/v_cluster_transaction_list.do?CSV

Alternatively, use the required format.

Alternatively, you can emulate the code from the loading_transactions.do UI page.  For example:

var vct = new VClusterTransaction('v_cluster_transaction');
vct.deleteTransactions();
var id = vct.informOtherNodes();
vct.refreshTransactions(GlideSession.get().getSessionID());
gs.log("Querying v_cluster_transaction", "SOURCE");
var gr = new GlideRecord("v_cluster_transaction");
gr.addQuery("age", ">", gs.getDurationDate('0 0:1:0'));
gr.query();
while ( gr.next() ) {
  // Now that the virtual table is populated, query the physical table and do something:
  gs.log("LONG RUNNING TRANSACTION OVER 1 MINUTE: SESSION=" + gr.session_id + " AGE=" + gr.age + " URL=" + gr.url, "SOURCE" );
}
 

Related Problem: PRB1244714

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.